1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Add preferred __version__, per pep-8

This commit is contained in:
Ross McFarland
2023-11-11 09:32:21 -08:00
parent 3ec425b612
commit 9b7341fee2
2 changed files with 11 additions and 3 deletions

View File

@@ -1,9 +1,16 @@
## v1.3.0 - 2023-??-?? - ???
#### 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
* Fixed issues with handling of chunking large TXT values for providers that use
the in-built `rrs` method
* 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

View File

@@ -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'