Skip to content

Commit 85af0fc

Browse files
MattHagpfps
authored andcommitted
Rename changelog.md to all capitals
The basic files in root often use all capitals, as is already used for readme and manifest. Related pwr-Solaar#2273
1 parent 79f7c5e commit 85af0fc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
File renamed without changes.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
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
22
recursive-include rules.d *
33
recursive-include share/locale *

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ candidates (ex. `1.0.0rc1`). Release candidates must have a `rcX` suffix.
88
Release routine:
99

1010
- Update version in `lib/solaar/version`
11-
- Add release changes to `ChangeLog.md`
11+
- Add release changes to `CHANGELOG.md`
1212
- Add release information to `share/solaar/io.github.pwr_solaar.solaar.metainfo.xml`
1313
- Create a commit that starts with `release VERSION`
1414
- Push commit to Solaar repository

release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ echo
8888
[[ ! $REPLY =~ ^[Yy]$ ]] && echo 'Release aborted.' && exit 1
8989

9090
# Check if version is in the changelog
91-
grep '^# '"$version" ChangeLog.md >/dev/null
91+
grep '^# '"$version" CHANGELOG.md >/dev/null
9292
[ $? -ne 0 ] && echo 'Error: Version is not present in the changelog' && exit 1
9393

9494
# Check for uncommitted changes
@@ -125,7 +125,7 @@ echo 'Creating tag...'
125125
[ "$line" == "# $version" ] && found=yes || found=no
126126
fi
127127
[ "$found" == 'yes' ] && [ "${line:0:1}" == '*' ] && echo "$line"
128-
done < ChangeLog.md
128+
done < CHANGELOG.md
129129
} > /tmp/solaar-changelog
130130
[ -z "$DRY_RUN" ] && git tag -s $version -F /tmp/solaar-changelog >/dev/null || true
131131
[ $? -ne 0 ] && echo -e '\nError: Failed to create tag' && exit 1

0 commit comments

Comments
 (0)