File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ projects: ["maykinmedia/15"]
16
16
- [ ] Version bump
17
17
- [ ] Regenerate API spec
18
18
- [ ] Update READMEs with release dates + links
19
- - [ ] Bump version number with ` bumpversion <major|minor|patch> ` or ` bump-my-version bump <major|minor|patch> `
19
+ - [ ] Bump version number with ` bin/ bump-my-version.sh bump <major|minor|patch>`
20
20
- [ ] Update changelog
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
#
3
- # Script to bump the version. Arguments are forwarded to bumpversion .
3
+ # Script to bump the version. Arguments are forwarded to bump-my-version .
4
4
#
5
5
# Usage:
6
6
#
7
- # ./bin/bumpversion.sh minor|patch|pre|build
7
+ # ./bin/bumpversion.sh bump minor|patch|pre|build
8
8
#
9
9
10
10
set -eu -o pipefail
@@ -18,8 +18,8 @@ if [ -z $VIRTUAL_ENV ]; then
18
18
exit 1
19
19
fi
20
20
21
- # Forward all arguments to bumpversion binary
22
- bumpversion " $@ "
21
+ # Forward all arguments to bump-my-version binary
22
+ bump-my-version " $@ "
23
23
24
24
# Run npm install to update the package-lock.json version number
25
- npm i
25
+ npm i
You can’t perform that action at this time.
0 commit comments