From b6b6f995e2b659a433b77ba51da2dfcc59ca65af Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 8 Feb 2022 16:31:31 +0000 Subject: [PATCH] Pre-Release 5.3.0-beta10: appversion and changelog --- ChangeLog.md | 9 +++++++++ config/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index dc1b4c17..74766105 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -27,6 +27,15 @@ produce the Windows executables and installer. --- +Pre-Release 5.3.0-beta10 +=== + +* Revert `semantic_version` python module to v2.8.5, as v2.9.0 doesn't get + correctly included by py2exe. This leads to application crash at startup + when using the Windows .exe. + +--- + Pre-Release 5.3.0-beta9 === diff --git a/config/__init__.py b/config/__init__.py index f7161cea..6e97602d 100644 --- a/config/__init__.py +++ b/config/__init__.py @@ -52,7 +52,7 @@ appcmdname = 'EDMC' # # Major.Minor.Patch(-prerelease)(+buildmetadata) # NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.3.0-beta9' +_static_appversion = '5.3.0-beta10' _cached_version: Optional[semantic_version.Version] = None copyright = '© 2015-2019 Jonathan Harris, 2020-2022 EDCD'