From 62e0d2caeda975a622135b24dcc4d17d13ece772 Mon Sep 17 00:00:00 2001 From: Christopher Maddalena Date: Thu, 24 Oct 2024 10:58:17 -0700 Subject: [PATCH] Updated for v4.3.4 patch --- CHANGELOG.md | 12 +++++++++++- VERSION | 4 ++-- config/settings/base.py | 4 ++-- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dbcbb0aa..e5d8d33bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # CHANGELOG -# [4.3.3] - 21 October 2024 +## [4.3.4] - 24 October 2024 + +### Changed + +* Adjusted the duplicate IP address checks for cloud servers on a project to make them more robust to catch more edge cases + +### Fixed + +* Fixed an issue with creating a new cloud server on a project + +## [4.3.3] - 21 October 2024 ### Added diff --git a/VERSION b/VERSION index d50691931..d8b670676 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -v4.3.3 -21 October 2024 +v4.3.4 +24 October 2024 diff --git a/config/settings/base.py b/config/settings/base.py index 3e12fc92c..e8bce66c3 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -11,9 +11,9 @@ # 3rd Party Libraries import environ -__version__ = "4.3.3" +__version__ = "4.3.4" VERSION = __version__ -RELEASE_DATE = "21 October 2024" +RELEASE_DATE = "24 October 2024" ROOT_DIR = Path(__file__).resolve(strict=True).parent.parent.parent APPS_DIR = ROOT_DIR / "ghostwriter"