We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f7cb6 commit 7587aceCopy full SHA for 7587ace
RELEASE.md
@@ -2,5 +2,4 @@
2
3
- Clean up issues/milestones on github
4
- Update NEWS.md
5
-- Run `bumpversion minor`
6
-- Run `git push --tags`
+- Run `./script/release`
scripts/release
@@ -0,0 +1,17 @@
1
+#!/bin/bash
+
+set -e
+cd "$(dirname "$0")/.."
+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