From 16489d004a5f97f7bc0f8fa15493ac19b0d97303 Mon Sep 17 00:00:00 2001 From: Viranch Mehta Date: Tue, 14 Nov 2023 10:19:10 -0800 Subject: [PATCH 1/2] v1.3.0 bump & changelog update --- CHANGELOG.md | 2 +- octodns/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c4aa1..56829fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v1.3.0 - 2023-??-?? - ??? +## v1.3.0 - 2023-11-14 - New and improved processors #### Noteworthy changes diff --git a/octodns/__init__.py b/octodns/__init__.py index 1ae31b0..083cfbf 100644 --- a/octodns/__init__.py +++ b/octodns/__init__.py @@ -1,4 +1,4 @@ 'OctoDNS: DNS as code - Tools for managing DNS across multiple providers' # TODO: remove __VERSION__ w/2.x -__version__ = __VERSION__ = '1.2.1' +__version__ = __VERSION__ = '1.3.0' From 2696e67fed6c5161eab3534ee033951ce12995a8 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 14 Nov 2023 10:42:50 -0800 Subject: [PATCH 2/2] Quote dunders in CHANGELOG so markdown doesn't bold them --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56829fa..c5c1d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ #### 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 +* 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 * Removed code that included sha in module version number when installing from @@ -20,7 +21,7 @@ horizon) * 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 +* Include the octodns special section info in `Record.__repr__`, makes it easier to debug things with providers that have special functionality configured there. * Most processor.filter processors now support an include_target flag that can