]> www.infradead.org Git - users/hch/nvmetcli.git/commitdiff
add a bump-ver.sh script to automate cutting releases
authorChristoph Hellwig <hch@lst.de>
Fri, 17 Feb 2017 14:46:43 +0000 (15:46 +0100)
committerChristoph Hellwig <hch@lst.de>
Fri, 17 Feb 2017 14:57:16 +0000 (15:57 +0100)
Signed-off-by: Christoph Hellwig <hch@lst.de>
bump-ver.sh [new file with mode: 0644]

diff --git a/bump-ver.sh b/bump-ver.sh
new file mode 100644 (file)
index 0000000..af850c0
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# Bump the version and cut a release.  Can't be called release.sh because
+# that would conflict with the make release rule in the makefile.
+#
+
+VER=$1
+
+set -e
+set +x
+
+if [ -z "$VER" ]; then
+   echo "usage: $0 version" >&2
+   exit 1
+fi
+
+sed -i "s/version =.*,/version = $VER,/" setup.py
+git add setup.py
+git commit -m "bump version to v$VER"
+
+git tag -s "v$VER" -m "nvmetcli release v$VER"
+
+make release
+(cd dist && gpg --armor --detach-sign nvmetcli-$VER.tar.gz)