Browse Source

Merge pull request #259 from github/rel-0-9-2

Rel 0 9 2
pull/276/head v0.9.2
Ross McFarland 7 years ago
committed by GitHub
parent
commit
6da23ea795
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 2 deletions
  1. +3
    -1
      CHANGELOG.md
  2. +1
    -1
      octodns/__init__.py
  3. +11
    -0
      script/release

+ 3
- 1
CHANGELOG.md View File

@ -1,10 +1,12 @@
## v0.9.2 - Unreleased
## v0.9.2 - 2018-08-20 - More sources
* EtcHostsProvider implementation to create static/emergency best effort * EtcHostsProvider implementation to create static/emergency best effort
content that can be used in /etc/hosts to resolve things. content that can be used in /etc/hosts to resolve things.
* Add lenient support to Zone.add_record, allows populate from providers that * Add lenient support to Zone.add_record, allows populate from providers that
have allowed/created invalid data and situations where a sub-zone is being have allowed/created invalid data and situations where a sub-zone is being
extracted from a parent, but the records still exist in the remote provider. extracted from a parent, but the records still exist in the remote provider.
* AXFR source support added
* google-cloud-dns requirement instead of general package
## v0.9.1 - 2018-05-21 - Going backwards with setup.py ## v0.9.1 - 2018-05-21 - Going backwards with setup.py


+ 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.9.1'
__VERSION__ = '0.9.2'

+ 11
- 0
script/release View File

@ -5,6 +5,17 @@ set -e
cd "$(dirname $0)"/.. cd "$(dirname $0)"/..
ROOT=$(pwd) ROOT=$(pwd)
if [ -z "$VENV_NAME" ]; then
VENV_NAME="env"
fi
ACTIVATE="$VENV_NAME/bin/activate"
if [ ! -f "$ACTIVATE" ]; then
echo "$ACTIVATE does not exist, run ./script/bootstrap" >&2
exit 1
fi
. "$ACTIVATE"
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"


Loading…
Cancel
Save