Skip to content

Commit 7587ace

Browse files
New release process
1 parent f7f7cb6 commit 7587ace

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

RELEASE.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
- Clean up issues/milestones on github
44
- Update NEWS.md
5-
- Run `bumpversion minor`
6-
- Run `git push --tags`
5+
- Run `./script/release`

scripts/release

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
set -e
4+
cd "$(dirname "$0")/.."
5+
6+
main() {
7+
run bumpversion minor
8+
run git push
9+
run git push --tags
10+
}
11+
12+
run() {
13+
echo "\$ $*"
14+
"$@"
15+
}
16+
17+
main

0 commit comments

Comments
 (0)