From ce7b2ef181adeda05353a776c5b52f50495e7a3a Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Wed, 6 Sep 2017 13:23:26 -0700 Subject: [PATCH] Cut v0.8.6 --- octodns/__init__.py | 2 +- script/release | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/octodns/__init__.py b/octodns/__init__.py index 601734c..bfb1905 100644 --- a/octodns/__init__.py +++ b/octodns/__init__.py @@ -3,4 +3,4 @@ from __future__ import absolute_import, division, print_function, \ unicode_literals -__VERSION__ = '0.8.5' +__VERSION__ = '0.8.6' diff --git a/script/release b/script/release index 16e7641..d8fabf2 100755 --- a/script/release +++ b/script/release @@ -8,5 +8,7 @@ ROOT=$(pwd) VERSION=$(grep __VERSION__ $ROOT/octodns/__init__.py | sed -e "s/.* = '//" -e "s/'$//") git tag -s v$VERSION -m "Release $VERSION" +git push origin v$VERSION +echo "Tagged and pushed v$VERSION" python setup.py sdist upload echo "Updloaded $VERSION"