From 9b7341fee2c32138563143c919648709a860c57e Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sat, 11 Nov 2023 09:32:21 -0800 Subject: [PATCH] Add preferred __version__, per pep-8 --- CHANGELOG.md | 11 +++++++++-- octodns/__init__.py | 3 ++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dde47b..a1b59b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ ## v1.3.0 - 2023-??-?? - ??? -* Added ZoneNameFilter processor to enable ignoring/alerting on type-os like - octodns.com.octodns.com +#### Noteworthy changes + +* Added octodns.__version__ to replace octodns.__VERSION__ as the former is more + of a standard, per pep-8. __VERSION__ is deprecated and will go away in 2.x * Fixed issues with handling of chunking large TXT values for providers that use the in-built `rrs` method + +#### Stuff + +* Added ZoneNameFilter processor to enable ignoring/alerting on type-os like + octodns.com.octodns.com * ExcludeRootNsChanges processor that will error (or warn) if plan includes a change to root NS records * Include the octodns special section info in Record __repr__, makes it easier diff --git a/octodns/__init__.py b/octodns/__init__.py index e106d6c..1ae31b0 100644 --- a/octodns/__init__.py +++ b/octodns/__init__.py @@ -1,3 +1,4 @@ 'OctoDNS: DNS as code - Tools for managing DNS across multiple providers' -__VERSION__ = '1.2.1' +# TODO: remove __VERSION__ w/2.x +__version__ = __VERSION__ = '1.2.1'