diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b4e51c66..86c636473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.2.10] - 13 July 2023 + +### Fixed + +* Adjusted logic for marking a domain as expired when syncing with Namecheap + * A domain marked as auto-renewable can expire, so Ghostwriter will now also mark a domain as expired and disable auto-renew if the API response has `AutoRenew` and `IsExpired` both set to `true` + ## [3.2.9] - 13 June 2023 ### Added diff --git a/VERSION b/VERSION index b334f27cf..4536d5ce2 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -v3.2.9 -13 June 2023 +v3.2.10 +13 July 2023 diff --git a/config/settings/base.py b/config/settings/base.py index 02e813324..5a91b4c3f 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -11,9 +11,9 @@ # 3rd Party Libraries import environ -__version__ = "3.2.9" +__version__ = "3.2.10" VERSION = __version__ -RELEASE_DATE = "13 June 2023" +RELEASE_DATE = "13 July 2023" ROOT_DIR = Path(__file__).resolve(strict=True).parent.parent.parent APPS_DIR = ROOT_DIR / "ghostwriter"