diff --git a/docs/changelog.rst b/docs/changelog.rst index ac9f4830..a1ebd081 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -51,20 +51,20 @@ Internal changes :issue:`1115`) -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) 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 diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 2567df66..583ce116 100644 --- a/mopidy/__init__.py +++ b/mopidy/__init__.py @@ -14,4 +14,4 @@ if not (2, 7) <= sys.version_info < (3,): 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 5d57eac3..9840468d 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -57,5 +57,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')