Skip to content

Commit

Permalink
Updated for v3.2.10 hotfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaddalena committed Jul 13, 2023
1 parent c3aae43 commit b9eae44
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v3.2.9
13 June 2023
v3.2.10
13 July 2023
4 changes: 2 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b9eae44

Please sign in to comment.