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'