Skip to content

Commit 7a5a0d8

Browse files
committed
Remove Appveyor reference in bump_version
1 parent dd6f5b1 commit 7a5a0d8

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

bump_version.sh

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,12 @@ sed -i "/^## Unreleased$/a \\
4141
\\
4242
## $version_number - $version_date" $changelog_file
4343

44-
# change version in appveyor config file
45-
appveyor_file=.appveyor.yml
46-
sed -i "s/^version: .*-{build}$/version: $version_number-{build}/" $appveyor_file
47-
4844
# change year in license file
4945
license_file=LICENSE
5046
sed -i -e "s/(c) [0-9]\{4\}/(c) $version_year/" $license_file
5147

5248
# create commit and tag
53-
git add $version_file $changelog_file $appveyor_file $license_file
49+
git add $version_file $changelog_file $license_file
5450
git commit -m "Version $version_number" --no-verify
5551
git tag "$version_number"
5652

@@ -60,11 +56,8 @@ echo "Version bumped to $version_number"
6056
# patch dev version in version file
6157
sed -i "s/^__version__ = .*$/__version__ = \"$dev_version_number\"/" $version_file
6258

63-
# change version in appveyor config file
64-
sed -i "s/^version: .*-{build}$/version: $dev_version_number-{build}/" $appveyor_file
65-
6659
# create commit
67-
git add $version_file $appveyor_file
60+
git add $version_file
6861
git commit -m "Dev version $dev_version_number" --no-verify
6962

7063
# say something

0 commit comments

Comments
 (0)