1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-16 01:00:42 +03:00

Release 5.2.3: appversion & changelog

This commit is contained in:
Athanasius 2021-11-22 11:08:03 +00:00
parent c3fd74b968
commit 2d729ec237
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
2 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -33,7 +33,7 @@ appcmdname = 'EDMC'
# <https://semver.org/#semantic-versioning-specification-semver>
# 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'