File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
- include COPYRIGHT COPYING README.md ChangeLog .md lib/solaar/version lib/solaar/commit
1
+ include COPYRIGHT COPYING README.md CHANGELOG .md lib/solaar/version lib/solaar/commit
2
2
recursive-include rules.d *
3
3
recursive-include share/locale *
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ candidates (ex. `1.0.0rc1`). Release candidates must have a `rcX` suffix.
8
8
Release routine:
9
9
10
10
- Update version in ` lib/solaar/version `
11
- - Add release changes to ` ChangeLog .md`
11
+ - Add release changes to ` CHANGELOG .md`
12
12
- Add release information to ` share/solaar/io.github.pwr_solaar.solaar.metainfo.xml `
13
13
- Create a commit that starts with ` release VERSION `
14
14
- Push commit to Solaar repository
Original file line number Diff line number Diff line change 88
88
[[ ! $REPLY =~ ^[Yy]$ ]] && echo ' Release aborted.' && exit 1
89
89
90
90
# Check if version is in the changelog
91
- grep ' ^# ' " $version " ChangeLog .md > /dev/null
91
+ grep ' ^# ' " $version " CHANGELOG .md > /dev/null
92
92
[ $? -ne 0 ] && echo ' Error: Version is not present in the changelog' && exit 1
93
93
94
94
# Check for uncommitted changes
@@ -125,7 +125,7 @@ echo 'Creating tag...'
125
125
[ " $line " == " # $version " ] && found=yes || found=no
126
126
fi
127
127
[ " $found " == ' yes' ] && [ " ${line: 0: 1} " == ' *' ] && echo " $line "
128
- done < ChangeLog .md
128
+ done < CHANGELOG .md
129
129
} > /tmp/solaar-changelog
130
130
[ -z " $DRY_RUN " ] && git tag -s $version -F /tmp/solaar-changelog > /dev/null || true
131
131
[ $? -ne 0 ] && echo -e ' \nError: Failed to create tag' && exit 1
You can’t perform that action at this time.
0 commit comments