diff --git a/CHANGELOG.md b/CHANGELOG.md index 152c6127be..beb7ea3b1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ -## Unreleased +## 0.4.1 (2020-08-18) #### New Features #### Improvements #### Fixes +- Fixed show titles displayed in white text on the schedule page ([#8338](https://github.com/pymedusa/Medusa/pull/8338)) +- Fixed Series show list title shown, also when it's the only show list used ([#8338](https://github.com/pymedusa/Medusa/pull/8338)) +- Fixed home table layouts Downloads sorting ([#8338](https://github.com/pymedusa/Medusa/pull/8338)) +- Fixed home table layouts previous and next episode sorting ([#8337](https://github.com/pymedusa/Medusa/pull/8337)) +- Fixed show's show lists not stored after restart ([#8337](https://github.com/pymedusa/Medusa/pull/8337)) ## 0.4.0 (2020-08-15) diff --git a/medusa/common.py b/medusa/common.py index 57495b1d69..e66cb43a66 100644 --- a/medusa/common.py +++ b/medusa/common.py @@ -39,7 +39,7 @@ log.logger.addHandler(logging.NullHandler()) INSTANCE_ID = text_type(uuid.uuid1()) -VERSION = '0.4.0' +VERSION = '0.4.1' USER_AGENT = 'Medusa/{version} ({system}; {release}; {instance})'.format( version=VERSION, system=platform.system(), release=platform.release(), instance=INSTANCE_ID)