From feec443bb4f1127673c738869251032066a7ef76 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 29 Sep 2017 16:14:22 -0700 Subject: [PATCH 1/2] Require setuptools new enough to publish to pypi --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 265f407..5cdf252 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ nose pep8 pyflakes requests_mock +setuptools>=36.4.0 From 74631a6a71779f59be50daed27044e11a314cbc6 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 29 Sep 2017 16:23:51 -0700 Subject: [PATCH 2/2] 0.8.7 version bump --- CHANGELOG.md | 13 +++++++++++++ octodns/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d58d4de..9c97cdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v0.8.7 - 2017-09-29 - OVH support + +Adds an OVH provider. + +## v0.8.6 - 2017-09-06 - CAA record type, + +Misc fixes and improvments. + +* Azure TXT record fix +* PowerDNS api support for https +* Configurable Route53 max retries and max-attempts +* Improved key ordering error message + ## v0.8.5 - 2017-07-21 - Azure, NS1 escaping, & large zones Relatively small delta this go around. No major themes or anything, just steady diff --git a/octodns/__init__.py b/octodns/__init__.py index bfb1905..3740dec 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.6' +__VERSION__ = '0.8.7'