From 193d2da4ddc53dde846005fc48a0103932b497e4 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 4 Nov 2019 14:56:36 -0800 Subject: [PATCH 1/2] v0.9.9 version bump and CHANGELOG update --- CHANGELOG.md | 3 ++- octodns/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 503e53c..1cb7b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.9.9 - 2019-??-?? - Python 3.7 Support +## v0.9.9 - 2019-11-04 - Python 3.7 Support * Extensive pass through the whole codebase to support Python 3 * Tons of updates to replace `def __cmp__` with `__eq__` and friends to @@ -23,6 +23,7 @@ * Bunch of additional unit tests and supporting config to exercise new code and verify things that were run into during the Python 3 work * lots of `six`ing of things +* Validate Record name & fqdn length ## v0.9.8 - 2019-09-30 - One with no changes b/c PyPi description problems diff --git a/octodns/__init__.py b/octodns/__init__.py index 71b5b1a..404d688 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.8' +__VERSION__ = '0.9.9' From 7a623f167f01d8590afb9286c315839ab43b299f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 4 Nov 2019 14:57:28 -0800 Subject: [PATCH 2/2] Test python setup build in CI --- script/cibuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/cibuild b/script/cibuild index d048e8e..a2dc527 100755 --- a/script/cibuild +++ b/script/cibuild @@ -27,4 +27,6 @@ echo "## lint ################################################################## script/lint echo "## tests/coverage ##############################################################" script/coverage +echo "## validate setup.py build #####################################################" +python setup.py build echo "## complete ####################################################################"