File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 3
3
4
4
include config.mk
5
5
6
- VERSION := "1.13.0-non-git"
7
- ifneq ($(wildcard ./.git/) ,)
8
- VERSION := "$(shell ${GIT} describe --tags 2>/dev/null || echo ${VERSION}) "
9
- endif
6
+ VERSION := "$(shell ./get-version.sh) "
10
7
11
8
SYSTEMD ?= $(shell $(PKG_CONFIG ) --silence-errors ${SYSTEMDAEMON} || echo 0)
12
9
Original file line number Diff line number Diff line change 2
2
- [ ] Update the changelog
3
3
- [ ] Write release notes (Only if non-patch release)
4
4
- [ ] Verify that the working directory is clean and on the master branch
5
- - [ ] Change the version in the Makefile to "x.x.x (iso-date)" (ex. "1.9.0 (2022-06-27)")
5
+ - [ ] Change the version in the get-version.sh to "x.x.x (iso-date)" (ex. "1.9.0 (2022-06-27)")
6
6
- [ ] Commit changes (Commit title: ` Dunst vX.X.X ` )
7
7
- [ ] Tag commit, make sure it's an annotated tag (` git tag -a "vX.X.X" -m "Dunst vX.X.X" ` )
8
8
- [ ] Push commits and tags
17
17
- [ ] Copy release notes to githubs release feature
18
18
- [ ] Publish release on github
19
19
20
- - [ ] Update Makefile version to "x.x.x-non-git"
20
+ - [ ] Update the get- version.sh fallback to "x.x.x-non-git"
21
21
- [ ] Commit & push
Original file line number Diff line number Diff line change 1
1
project (
2
2
' dunst' ,
3
3
' c' ,
4
- version : ' 1.9.2 ' ,
4
+ version : run_command ( ' ./get-version.sh ' , check : true ).stdout() ,
5
5
license : ' MIT' ,
6
6
meson_version : ' >=0.60.0' ,
7
7
default_options : [
You can’t perform that action at this time.
0 commit comments