From aff1cfa6c847953521e0f5dad17ca22ba5f505db Mon Sep 17 00:00:00 2001 From: Athanasius Date: Wed, 17 Mar 2021 12:08:50 +0000 Subject: [PATCH] Release 4.2.2: appversion and changelog --- ChangeLog.md | 10 ++++++++++ config.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 25fc8188..ae45fc74 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,16 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release 4.2.2 +=== + + This release contains a minor bug-fix, actually properly checking a station's +ships list before operating on it. + +* Check that `ships['shipuard_list']` is a `dict` before trying to use + `.values()` on it. This fixes the issue with seeing `list object has no + attribute values` in the application status line. + Release 4.2.1 === diff --git a/config.py b/config.py index f611043f..1c660ac7 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.1' #-rc1+a872b5f' +appversion = '4.2.2' #-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'