Merge branch 'release/v0.19.x' into develop

Conflicts:
	docs/changelog.rst
This commit is contained in:
Stein Magnus Jodal 2014-12-24 00:41:10 +01:00
commit 890ed53ee6
3 changed files with 11 additions and 9 deletions

View File

@ -70,15 +70,16 @@ v0.20.0 (UNRELEASED)
it is in use and will be missed is to go ahead and remove it. 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 - Config: Support UTF-8 in extension's default config. If an extension with
characters in its default config was installed, and Mopidy didn't already non-ASCII characters in its default config was installed, and Mopidy didn't
have a config file, Mopidy would crashed when trying to create the initial already have a config file, Mopidy would crashed when trying to create the
config file based on the default config of all available extensions. initial config file based on the default config of all available extensions.
(Fixes: :discuss:`428`) (Fixes: :discuss:`428`)
- Extensions: Fix crash when unpacking data from - Extensions: Fix crash when unpacking data from

View File

@ -30,4 +30,4 @@ except ImportError:
warnings.filterwarnings('ignore', 'could not open display') warnings.filterwarnings('ignore', 'could not open display')
__version__ = '0.19.4' __version__ = '0.19.5'

View File

@ -50,5 +50,6 @@ class VersionTest(unittest.TestCase):
self.assertLess(SV('0.19.0'), SV('0.19.1')) 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.1'), SV('0.19.2'))
self.assertLess(SV('0.19.2'), SV('0.19.3')) self.assertLess(SV('0.19.2'), SV('0.19.3'))
self.assertLess(SV('0.19.3'), SV(__version__)) self.assertLess(SV('0.19.3'), SV('0.19.4'))
self.assertLess(SV(__version__), SV('0.19.5')) self.assertLess(SV('0.19.4'), SV(__version__))
self.assertLess(SV(__version__), SV('0.19.6'))