Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
Conflicts:
	docs/changelog.rst
  • Loading branch information
jodal committed Jul 1, 2013
2 parents d6a1e13 + 259e55a commit 0a61b46
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 5 deletions.
11 changes: 11 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ v0.15.0 (UNRELEASED)
:option:`mopidy --option` arguments appearing later on the command line.


v0.14.2 (2013-07-01)
====================

This is a maintenance release to make Mopidy 0.14 work with pyspotify 1.11.

**Dependencies**

- pyspotify >= 1.9, < 2 is now required for Spotify support. In other words,
you're free to upgrade to pyspotify 1.11, but it isn't a requirement.


v0.14.1 (2013-04-28)
====================

Expand Down
18 changes: 18 additions & 0 deletions docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,24 @@ Core configuration values
.. _the Python logging docs: http://docs.python.org/2/library/logging.config.html


Extension configuration
=======================

Mopidy's extensions have their own config values that you may want to tweak.
For the available config values, please refer to the docs for each extension.
Most, if not all, can be found at :ref:`ext`.

Mopidy extensions are enabled by default when they are installed. If you want
to disable an extension without uninstalling it, all extensions support the
``enabled`` config value even if it isn't explicitly documented by all
extensions. If the ``enabled`` config value is set to ``false`` the extension
will not be started. For example, to disable the Spotify extension, add the
following to your ``mopidy.conf``::

[spotify]
enabled = false


Extension configuration
=======================

Expand Down
2 changes: 1 addition & 1 deletion mopidy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
warnings.filterwarnings('ignore', 'could not open display')


__version__ = '0.14.1'
__version__ = '0.14.2'
2 changes: 1 addition & 1 deletion requirements/spotify.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyspotify >= 1.9, < 1.11
pyspotify >= 1.9, < 2
# The libspotify Python wrapper
# Available as the python-spotify package from apt.mopidy.com

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_version(filename):
'Pykka >= 1.1',
],
extras_require={
'spotify': ['pyspotify >= 1.9, < 1.11'],
'spotify': ['pyspotify >= 1.9, < 2'],
'scrobbler': ['pylast >= 0.5.7'],
'http': ['cherrypy >= 3.2.2', 'ws4py >= 0.2.3'],
},
Expand Down
5 changes: 3 additions & 2 deletions tests/version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ def test_versions_can_be_strictly_ordered(self):
self.assertLess(SV('0.11.1'), SV('0.12.0'))
self.assertLess(SV('0.12.0'), SV('0.13.0'))
self.assertLess(SV('0.13.0'), SV('0.14.0'))
self.assertLess(SV('0.14.0'), SV(__version__))
self.assertLess(SV(__version__), SV('0.14.2'))
self.assertLess(SV('0.14.0'), SV('0.14.1'))
self.assertLess(SV('0.14.1'), SV(__version__))
self.assertLess(SV(__version__), SV('0.14.3'))

0 comments on commit 0a61b46

Please sign in to comment.