From 76f01f9f26ab770c41c365100c71d21f7ff91a63 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 26 Mar 2018 08:28:49 -0700 Subject: [PATCH] 0.9.0 version bump and (partial) changelog updates --- CHANGELOG.md | 15 +++++++++++++++ octodns/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d8b441..11d984c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## v0.9.0 - 2018-03-26 - Way too long since we last met + +* Way way way too much to list out here, shouldn't have waited so long +* Initial NS1 geo support +* Major reworking of `CloudflareProvider`'s update process, was only partially + functional before, also ignore proxied records +* Fixes and improvements to better support non-ascii records and zones +* Plans indicate when Zones are going to be created +* Fix for `GoogleCloudProvider` handling of ; escapes +* Skip Alias recordsets for Route53 (unsupported concept/type) +* Make sure that Record geo values are sorted to prevent false diffs that can + never be fixed +* `DynProvider` fix to safely roll rulesets, things could end up on rules + without a pool and/or hitting the default rule previously. + ## v0.8.8 - 2017-10-24 - Google Cloud DNS, Large TXT Record support * Added support for "chunking" TXT records where individual values were larger diff --git a/octodns/__init__.py b/octodns/__init__.py index 2166778..da72790 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.8' +__VERSION__ = '0.9.0'