diff --git a/docs/changelog.rst b/docs/changelog.rst index d9cc6c85..9ab0f2b7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) ==================== diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 47e36e06..7b55f20a 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.3' +__version__ = '0.19.4' diff --git a/tests/test_version.py b/tests/test_version.py index 0431beae..96063a1b 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -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'))