From e1354c34827369da3c60772d219f138e003c830a Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sat, 18 Jun 2022 13:53:07 +0100 Subject: [PATCH] Release 5.4.1: appversion & changelog --- ChangeLog.md | 19 ++++++++++++++++++- config/__init__.py | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index ff6a1043..df177f24 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -27,10 +27,27 @@ produce the Windows executables and installer. --- -Pre-Release 5.4.1-rc1 +Release 5.4.1 === * We now test against, and package with, Python 3.10.5. +* If for any reason `EDMarketConnector.exe` fails to shutdown and exit when + asked to by the upgrade process this should no longer result in a spontaneous + system reboot. Closes [#1492](https://github.com/EDCD/EDMarketConnector/issues/1492). + + A manual reboot will still be required to complete the EDMarketConnector + upgrade process and we make no guarantees about the stability of the + application until this is done. +* The new EDDN `fsssignaldiscovered/1` schema has been implemented. +* EDSM trace level logging will no longer log API credentials unless explicitly + asked to, separately from other EDSM API trace logging. + +Bug Fixes +--- + +* EDDN: Ensure we always remove all `_Localised` suffix keys in data. This + was missed in some recent new schemas and turned out to be an issue for at + least `approachsettlement/1`. --- diff --git a/config/__init__.py b/config/__init__.py index 924151ef..c72fe4cb 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.4.1-alpha0' +_static_appversion = '5.4.1' _cached_version: Optional[semantic_version.Version] = None copyright = '© 2015-2019 Jonathan Harris, 2020-2022 EDCD'