Merge branch 'v1.0.x' into develop

Conflicts:
	docs/changelog.rst
This commit is contained in:
Stein Magnus Jodal 2015-04-27 00:18:41 +02:00
commit b14aee3e04
4 changed files with 20 additions and 12 deletions

View File

@ -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)

View File

@ -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

View File

@ -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'

View File

@ -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')