diff --git a/ChangeLog.md b/ChangeLog.md index f15c3608..30ddf3fc 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -33,6 +33,17 @@ produce the Windows executables and installer. currently used version in a given branch. --- +Release 5.9.5 +=== +This release fixes an uncommon problem with the uninstaller logic if upgrading from a version prior +to 5.9.0 to improve consistancy across versions. + +Note to plugin developers: modules.p and ships.p will be deprecated in the next version, and slated +for removal in the next major release! Please look for that change coming soon. + +- Updates Module pickle files to latest values +- Fixes a problem with the uninstaller logic caused by prior versions having fluctuating GUIDs. + Release 5.9.4 === This release fixes a widely-reported bug that resulted in the cAPI Authentication diff --git a/config/__init__.py b/config/__init__.py index e7232e1f..a31cdd89 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.9.4' +_static_appversion = '5.9.5' _cached_version: Optional[semantic_version.Version] = None copyright = '© 2015-2019 Jonathan Harris, 2020-2023 EDCD'