Browse Source

Merge pull request #106 from github/rel-0.8.6

Cut v0.8.6
pull/108/head v0.8.6
Ross McFarland 8 years ago
committed by GitHub
parent
commit
24c06b5ff9
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      octodns/__init__.py
  2. +2
    -0
      script/release

+ 1
- 1
octodns/__init__.py View File

@ -3,4 +3,4 @@
from __future__ import absolute_import, division, print_function, \ from __future__ import absolute_import, division, print_function, \
unicode_literals unicode_literals
__VERSION__ = '0.8.5'
__VERSION__ = '0.8.6'

+ 2
- 0
script/release View File

@ -8,5 +8,7 @@ ROOT=$(pwd)
VERSION=$(grep __VERSION__ $ROOT/octodns/__init__.py | sed -e "s/.* = '//" -e "s/'$//") VERSION=$(grep __VERSION__ $ROOT/octodns/__init__.py | sed -e "s/.* = '//" -e "s/'$//")
git tag -s v$VERSION -m "Release $VERSION" git tag -s v$VERSION -m "Release $VERSION"
git push origin v$VERSION
echo "Tagged and pushed v$VERSION"
python setup.py sdist upload python setup.py sdist upload
echo "Updloaded $VERSION" echo "Updloaded $VERSION"

Loading…
Cancel
Save