From ee6fe1970fd2d3c6126932afd9687455f069c434 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 1 Apr 2022 12:37:11 -0700 Subject: [PATCH] Rel 0.9.17 version bump & CHANGELOG update --- CHANGELOG.md | 7 ++++++- octodns/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1aa96..44209eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.9.17 - 2022-??-?? - ??? +## v0.9.17 - 2022-04-02 - Registration required #### Noteworthy changes @@ -15,10 +15,15 @@ arbitrarily picked. * Record.register_type added so that providers can register custom record types, see [docs/records.md](docs/records.md) for more information +* New `octodns-versions` command which will log out the version of octodns and + any provider/processor/plan_output modules you are using. #### Stuff * Manager includes the octoDNS version in its init log line +* Non-official release installs will now include a bit of the sha to indicate + specifically what revision is being used, e.g. 0.9.17+abcdef12, these roughly + follow PEP440 guidelines ## v0.9.16 - 2022-03-04 - Manage the root of the problem diff --git a/octodns/__init__.py b/octodns/__init__.py index 516d34b..1870f70 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.16' +__VERSION__ = '0.9.17'