From ea09271ece7880c7314c0385faca2b48ab609857 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 28 Sep 2020 14:08:53 +0100 Subject: [PATCH] Pre-Release 4.1.0-beta9 --- ChangeLog.md | 11 +++++++++++ config.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 5a755818..27660368 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,17 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Pre-Release 4.1.0-beta9 +=== + +Changes in beta8 had inadvertently broken the way printed output from the +program is redirected to the logfile. This had two consequences: + +1. Anything using proper logging wouldn't appear in the Temp log file. +1. A popup would appear on program exit, as the way we package the .exe causes + any output to go to a file in the current working directory. This isn't + writable with the way we install. + Pre-Release 4.1.0-beta8 === diff --git a/config.py b/config.py index 68ab6284..c2e01d3d 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.0-beta8' #-rc1+a872b5f' +appversion = '4.1.0-beta9' #-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'