From bdb1f0f2641052ffbb493d2b7202ec52409e5214 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Thu, 6 Feb 2014 23:28:20 +0100 Subject: [PATCH] Update changelog for bugfix release --- docs/changelog.rst | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f29f86ab..89c37d9d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,30 +5,26 @@ Changelog This changelog is used to track all major changes to Mopidy. -v0.19.0 (unreleased) +v0.18.2 (UNRELEASED) ==================== -**Configuration** +Bug fix release. - Fix the log setup so that it is possible to increase the amount of logging from a specific logger using the ``loglevels`` config section. (Fixes: :issue:`684`) -**Models** +- Serialization of :class:`~mopidy.models.Playlist` models with the + ``last_modified`` field set to a :class:`datetime.datetime` instance did not + work. The type of :attr:`mopidy.models.Playlist.last_modified` has been + redefined from a :class:`datetime.datetime` instance to the number of + milliseconds since Unix epoch as an integer. This makes serialization of the + time stamp simpler. -- The type of :attr:`mopidy.models.Playlist.last_modified` has been redefined - from a :class:`datetime.datetime` instance to the number of milliseconds - since Unix epoch as an integer. This makes serialization of the time stamp - simpler. +- Minor refactor of the MPD server context so that Mopidy's MPD protocol + implementation can easier be reused. (Fixes: :issue:`646`) -**MPD** - -- Minor refactor of context such that it stores password instead of config. - (Fixes: :issue:`646`) - -**Windows** - -- Network and signal handling has been updated to play nice on windows systems. +- Network and signal handling has been updated to play nice on Windows systems. v0.18.1 (2014-01-23)