diff --git a/ChangeLog.md b/ChangeLog.md index acfceb95..9bdc3ad7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -27,10 +27,10 @@ produce the Windows executables and installer. --- -Pre-Release 5.2.3-beta1 +Release 5.2.3 === -This release fixes one bug. +This release fixes one bug and fixes some example code. * Odyssey changed the order of some Journal events. This caused our logic for tracking the following to break, and thus not report them ever to Inara: @@ -48,6 +48,13 @@ Developers * Now built using Python 3.9.9. +* Updated [PLUGINS.md](https://github.com/EDCD/EDMarketConnector/blob/main/PLUGINS.md#packaging-extra-modules) + to state that we don't actually include *all* of Python's standard library. + +* The [click_counter](https://github.com/EDCD/EDMarketConnector/tree/main/docs/examples/click_counter) + example plugin code has been corrected to both actually work fully, and pass + our linting. + --- Release 5.2.2 diff --git a/config.py b/config.py index 65b8248e..22663eab 100644 --- a/config.py +++ b/config.py @@ -33,7 +33,7 @@ appcmdname = 'EDMC' # # Major.Minor.Patch(-prerelease)(+buildmetadata) # NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.2.3-beta1' +_static_appversion = '5.2.3' _cached_version: Optional[semantic_version.Version] = None copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'