From f9cc742de4ef55eb9232c3c6bd316c4fc3da9f49 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 29 Mar 2021 16:02:17 +0100 Subject: [PATCH] Release 4.2.5: appversion and changelog --- ChangeLog.md | 21 +++++++++++++++++++++ config.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index fc08929b..54244297 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,27 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release 4.2.5 +=== + +* 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 +--- + +We've added a compatibility layer so that you can start using the different +config.get methods that are in [5.0.0-beta1](https://github.com/EDCD/EDMarketConnector/releases/tag/Release%2F5.0.0-beta1). + Release 4.2.4 === diff --git a/config.py b/config.py index fc87d2b4..728b351b 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ appcmdname = 'EDMC' # appversion **MUST** follow Semantic Versioning rules: # # Major.Minor.Patch(-prerelease)(+buildmetadata) -appversion = '4.2.4' #-rc1+a872b5f' +appversion = '4.2.5' #-rc1+a872b5f' # For some things we want appversion without (possible) +build metadata appversion_nobuild = str(semantic_version.Version(appversion).truncate('prerelease')) copyright = u'© 2015-2019 Jonathan Harris, 2020-2021 EDCD'