diff --git a/docs/changelog.rst b/docs/changelog.rst index 756a8b39..c1428ce4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -70,15 +70,16 @@ v0.20.0 (UNRELEASED) it is in use and will be missed is to go ahead and remove it. -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 diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 18ecb22d..60d7a428 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -30,4 +30,4 @@ except ImportError: 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 32b40fca..d391760b 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'))