From 31a1cb91288f7ea54226b4a1f7990172fe155e34 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 27 Apr 2015 00:00:10 +0200 Subject: [PATCH 1/3] docs: Update changelog for v1.0.2 --- docs/changelog.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index e10165ac..f4b796d7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,20 +4,21 @@ Changelog This changelog is used to track all major changes to Mopidy. -v1.0.2 (unreleased) + +v1.0.2 (2015-04-27) =================== Bug fix release. -- HTTP: Make event broadcasts work with Tornado 2.3, the previous threading fix - broke this. +- HTTP: Make event broadcasts work with Tornado 2.3 again. The threading fix + in v1.0.1 broke this. - Audio: Fix for :issue:`1097` tuned down the buffer size in the queue. Turns out this can cause distortions in certain cases. Give this an other go with - a more generous buffer size. (Fixes: :issue:`1147`) + a more generous buffer size. (Fixes: :issue:`1147`, PR: :issue:`1152`) - Audio: Make sure mute events get emitted by software mixer. - (Fixes: :issue:`1146`) + (Fixes: :issue:`1146`, PR: :issue:`1152`) v1.0.1 (2015-04-23) From 21289f8fe5672bfbe70d481f17ae1d4b646b75f0 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 27 Apr 2015 00:02:12 +0200 Subject: [PATCH 2/3] Bump version to 1.0.2 --- mopidy/__init__.py | 2 +- tests/test_version.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 8dff0012..cabe0012 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -30,4 +30,4 @@ except ImportError: warnings.filterwarnings('ignore', 'could not open display') -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/tests/test_version.py b/tests/test_version.py index 3d284121..6071e2cd 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -56,5 +56,6 @@ class VersionTest(unittest.TestCase): self.assertVersionLess('0.19.3', '0.19.4') self.assertVersionLess('0.19.4', '0.19.5') self.assertVersionLess('0.19.5', '1.0.0') - self.assertVersionLess('1.0.0', __version__) - self.assertVersionLess(__version__, '1.0.2') + self.assertVersionLess('1.0.0', '1.0.1') + self.assertVersionLess('1.0.1', __version__) + self.assertVersionLess(__version__, '1.0.3') From d5ef4aa7b80b713c9d625a5c6e3b05d6269dc616 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 27 Apr 2015 00:12:41 +0200 Subject: [PATCH 3/3] docs: jessie is the new Debian stable --- docs/installation/debian.rst | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/installation/debian.rst b/docs/installation/debian.rst index 4def3fbb..490aa6ac 100644 --- a/docs/installation/debian.rst +++ b/docs/installation/debian.rst @@ -18,12 +18,12 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See The packages should work with: - - Debian stable and testing, - - Raspbian stable and testing, + - Debian stable ("jessie") and testing ("stretch"), + - Raspbian stable ("jessie") and testing ("stretch"), - Ubuntu 14.04 LTS and later. - Some of the packages, including the core "mopidy" packages, does *not* work - on Ubuntu 12.04 LTS. + Some of the packages *does not* work with Ubuntu 12.04 LTS or Debian 7 + "wheezy". This is just what we currently support, not a promise to continue to support the same in the future. We *will* drop support for older @@ -47,6 +47,13 @@ from scratch, we have a guide for installing Debian/Raspbian and Mopidy. See sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/mopidy.list + .. note:: + + If you're still running Debian 7 "wheezy" or Raspbian "wheezy", you + should edit :file:`/etc/apt/sources.list.d/mopidy.list` and replace + "stable" with "wheezy". This will give you the latest set of packages + that is compatible with Debian "wheezy". + #. Install Mopidy and all dependencies:: sudo apt-get update