Browse Source

Add preferred __version__, per pep-8

pull/1099/head
Ross McFarland 2 years ago
parent
commit
9b7341fee2
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 11 additions and 3 deletions
  1. +9
    -2
      CHANGELOG.md
  2. +2
    -1
      octodns/__init__.py

+ 9
- 2
CHANGELOG.md View File

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


+ 2
- 1
octodns/__init__.py 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'

Loading…
Cancel
Save