From 95458f12c7046f26193a30678d32656cf6f186f9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 29 Mar 2021 19:59:05 +0100 Subject: [PATCH] Pre-Release 5.0.0-beta2: appversion & changelog --- ChangeLog.md | 28 ++++++++++++++++++++++++++++ config.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 5074c6e0..31a3a69b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,34 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Pre-Release 5.0.0-beta2 +=== + +* Support the 'JournalAlpha' files from the Odyssey Alpha. We've confirmed + any data from these is correctly tagged as 'beta' for the is_beta flag + passed to plugins. + + Any data from Odyssey Alpha is sent to EDDN using the test schemas. + + No data from Odyssey Alpha is sent to the EDSM or Inara APIs. + +* Fix ship loadout export to files to not trip up in the face of file encoding + issues. This relates to the 'Ship Loadout' option on the 'Output' tab of + Settings/Preferences. + +Plugin Authors +--- + +* `config.appversion()` now returns a `semantic_version.Version`. In contexts + where you're expecting a string this should mostly just work. If needs + be wrap it in a `str()`. + +* Example plugin + [plugintest](https://github.com/EDCD/EDMarketConnector/tree/main/docs/examples/plugintest) + updated. This includes an example of how to check core EDMC version if needs + be. This example is also in + [PLUGINS.md](https://github.com/EDCD/EDMarketConnector/blob/main/PLUGINS.md#checking-core-edmc-version). + Pre-Release 5.0.0-beta1 === diff --git a/config.py b/config.py index 38bad78e..f8afe737 100644 --- a/config.py +++ b/config.py @@ -41,7 +41,7 @@ appcmdname = 'EDMC' # # Major.Minor.Patch(-prerelease)(+buildmetadata) # NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.0.0-beta1' +_static_appversion = '5.0.0-beta2' copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD' update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml'