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

Conflicts:
	docs/changelog.rst
This commit is contained in:
Stein Magnus Jodal 2014-09-01 23:17:00 +02:00
commit d41deb1844
3 changed files with 15 additions and 13 deletions

View File

@ -19,24 +19,18 @@ v0.20.0 (UNRELEASED)
a whitespace. Pipes are more similar to forward slash.
v0.19.4 (UNRELEASED)
v0.19.4 (2014-09-01)
====================
Bug fix release.
- MPD frontend: Make the ``list`` command return albums when sending 3
arguments. This was incorrectly returning artists after the MPD command
changes in 0.19.0. (Fixes: :issue:`817`)
- Configuration: :option:`mopidy --config` now supports directories.
- Logging: Fix that some loggers would be disabled if
:confval:`logging/config_file` was set. (Fixes: :issue:`740`)
- Core: Return exit status 1 when exiting because of initialization error.
- Configuration: :option:`mopidy --config` now supports directories.
- Network: Fix a race condition where two threads could try to free the same
data simultaneously. (Fixes: :issue:`781`)
- Quit process with exit code 1 when stopping because of a backend, frontend,
or mixer initialization error.
- Backend API: Update :meth:`mopidy.backend.LibraryProvider.browse` signature
and docs to match how the core use the backend's browse method. (Fixes:
@ -49,6 +43,13 @@ Bug fix release.
- HTTP frontend: Guard against double close of WebSocket, which causes an
:exc:`AttributeError` on Tornado < 3.2.
- MPD frontend: Make the ``list`` command return albums when sending 3
arguments. This was incorrectly returning artists after the MPD command
changes in 0.19.0. (Fixes: :issue:`817`)
- MPD frontend: Fix a race condition where two threads could try to free the
same data simultaneously. (Fixes: :issue:`781`)
v0.19.3 (2014-08-03)
====================

View File

@ -21,4 +21,4 @@ if (isinstance(pykka.__version__, basestring)
warnings.filterwarnings('ignore', 'could not open display')
__version__ = '0.19.3'
__version__ = '0.19.4'

View File

@ -49,5 +49,6 @@ class VersionTest(unittest.TestCase):
self.assertLess(SV('0.18.3'), SV('0.19.0'))
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(__version__))
self.assertLess(SV(__version__), SV('0.19.4'))
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'))