diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb1204..d58d4de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ +## v0.8.5 - 2017-07-21 - Azure, NS1 escaping, & large zones -## v0.8.4 - 2017-03-14 - It's been too long +Relatively small delta this go around. No major themes or anything, just steady +progress. + +* AzureProvider added thanks to work by + [Heesu Hwang](https://github.com/h-hwang). +* Fixed some escaping issues with NS1 TXT and SPF records that were tracked down + with the help of [Blake Stoddard](https://github.com/blakestoddard). +* Some tweaks were made to Zone.records to vastly improve handling of zones with + very large numbers of records, no more O(N^2). + +## v0.8.4 - 2017-06-28 - It's been too long Lots of updates based on our internal use, needs, and feedback & suggestions from our OSS users. There's too much to list out since the previous release was @@ -28,7 +39,7 @@ better in the future :fingers_crossed: implementation. Sorting can be disabled in the YamlProvider with `enforce_order: False`. * Semi-colon/escaping fixes and improvements. -* Meta record support, `TXT octodns-meta.`. For now just +* Meta record support, `TXT octodns-meta.`. For now just `provider=`. Optionally turned on with `include_meta` manager config val. * Validations check for CNAMEs co-existing with other records and error out if diff --git a/octodns/__init__.py b/octodns/__init__.py index 94ef299..601734c 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.4' +__VERSION__ = '0.8.5'