From 884c35e1f4169a8855a82f99bdb3a46ed4916a65 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 24 Dec 2014 00:36:52 +0100 Subject: [PATCH 1/2] docs: Update changelog --- docs/changelog.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 4e3662f1..1b88c489 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,15 +5,16 @@ Changelog This changelog is used to track all major changes to Mopidy. -v0.19.5 (UNRELEASED) +v0.19.5 (2014-12-23) ==================== -Bug fix release. +Today is Mopidy's five year anniversary. We're celebrating with a bugfix +release and are looking forward to the next five years! -- Config: Support UTF-8 in default config. If an extension with non-ASCII - characters in its default config was installed, and Mopidy didn't already - have a config file, Mopidy would crashed when trying to create the initial - config file based on the default config of all available extensions. +- Config: Support UTF-8 in extension's default config. If an extension with + non-ASCII characters in its default config was installed, and Mopidy didn't + already have a config file, Mopidy would crashed when trying to create the + initial config file based on the default config of all available extensions. (Fixes: :discuss:`428`) - Extensions: Fix crash when unpacking data from From 6af624a3699df40369c1b95cff5a4c4eab51adaf Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 24 Dec 2014 00:37:33 +0100 Subject: [PATCH 2/2] Bump version to 0.19.5 --- mopidy/__init__.py | 2 +- tests/test_version.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 7b55f20a..6c122057 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -21,4 +21,4 @@ if (isinstance(pykka.__version__, basestring) warnings.filterwarnings('ignore', 'could not open display') -__version__ = '0.19.4' +__version__ = '0.19.5' diff --git a/tests/test_version.py b/tests/test_version.py index 96063a1b..7e3922ca 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -50,5 +50,6 @@ class VersionTest(unittest.TestCase): self.assertLess(SV('0.19.0'), SV('0.19.1')) self.assertLess(SV('0.19.1'), SV('0.19.2')) self.assertLess(SV('0.19.2'), SV('0.19.3')) - self.assertLess(SV('0.19.3'), SV(__version__)) - self.assertLess(SV(__version__), SV('0.19.5')) + self.assertLess(SV('0.19.3'), SV('0.19.4')) + self.assertLess(SV('0.19.4'), SV(__version__)) + self.assertLess(SV(__version__), SV('0.19.6'))