From decb8892422cfae62b23bcde5a0395040d7e58c9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 8 Jan 2021 15:51:27 +0000 Subject: [PATCH] Pre-Release 4.1.6-rc2 version and changelog --- ChangeLog.md | 16 ++++++++++++++++ config.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 333a4eb3..6dfc06ad 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,22 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release 4.1.6-rc2 +=== + +* We've applied extra paranoia to some of the application shutdown code to + ensure we're not still trying to handle journal events during this sequence. + + We also re-ordered the shutdown sequence, which might help avoid the shutdown + hang. + + If you encounter a shutdown hang then please add a comment and log files to + [Application can leave a zombie process on shutdown #678](https://github.com/EDCD/EDMarketConnector/issues/678) + to help us track down the cause and fix it. + + +* Logging from any name-mangled method should now work properly. + Release 4.1.6-rc1 === diff --git a/config.py b/config.py index 08d7ec89..b2e296c0 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.1.6-rc1' #-rc1+a872b5f' +appversion = '4.1.6-rc2' #-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 EDCD'