From 8c342f608a525b6150398216968160da7af06ab3 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 20 Aug 2018 10:49:42 -0700 Subject: [PATCH 1/2] 0.9.2 version bump and changelog update --- CHANGELOG.md | 4 +++- octodns/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b753fcb..a35489e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ -## v0.9.2 - Unreleased +## v0.9.2 - 2018-08-20 - More sources * EtcHostsProvider implementation to create static/emergency best effort content that can be used in /etc/hosts to resolve things. * 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 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 diff --git a/octodns/__init__.py b/octodns/__init__.py index b45191a..f5181d7 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.9.1' +__VERSION__ = '0.9.2' From d6b0726a0990d6e7ffb514f833569962f43c22f6 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 20 Aug 2018 10:49:58 -0700 Subject: [PATCH 2/2] Minor fixes to script/release to source env --- script/release | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/script/release b/script/release index eadd2e1..3b64911 100755 --- a/script/release +++ b/script/release @@ -5,6 +5,17 @@ set -e cd "$(dirname $0)"/.. 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/'$//") git tag -s v$VERSION -m "Release $VERSION"