From a6d0f1492a5d7147efabb59e78b695541f61122f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 26 Feb 2024 08:59:07 -0800 Subject: [PATCH] Version 0.0.3 changelog update & version bump --- CHANGELOG.md | 2 +- octodns_ultra/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca7af59..385d085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.0.3 - 2023-??-?? +## v0.0.3 - 2024-02-26 - A long overdue one * Enable support for root level NS records (`SUPPORTS_ROOT_NS=true`) * Enable support for wildcard zone lookups (list_zones()) diff --git a/octodns_ultra/__init__.py b/octodns_ultra/__init__.py index 2f437d4..1ac88e9 100644 --- a/octodns_ultra/__init__.py +++ b/octodns_ultra/__init__.py @@ -13,7 +13,7 @@ from octodns.record import Create, Record, Update # TODO: remove __VERSION__ with the next major version release -__version__ = __VERSION__ = '0.0.2' +__version__ = __VERSION__ = '0.0.3' class UltraClientException(ProviderException):