From 03d65432542cb0cedeb9c17ee17ef6bd88ba155f Mon Sep 17 00:00:00 2001 From: kyleheyne Date: Mon, 29 Jun 2015 14:22:08 -0400 Subject: [PATCH 1/3] Update osx.rst Changed brew upgrade to brew upgrade --all. --- docs/installation/osx.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/osx.rst b/docs/installation/osx.rst index 71beece3..e9ce16e3 100644 --- a/docs/installation/osx.rst +++ b/docs/installation/osx.rst @@ -18,7 +18,7 @@ If you are running OS X, you can install everything needed with Homebrew. date before you continue:: brew update - brew upgrade + brew upgrade --all Notice that this will upgrade all software on your system that have been installed with Homebrew. From cf9c9509154b0b9f40781de3797a66fe7f3003ab Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 22 Jul 2015 18:30:41 +0200 Subject: [PATCH 2/3] Bump version to 1.0.8 --- 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 7ab3b9e6..e9f2e6c3 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.7' +__version__ = '1.0.8' diff --git a/tests/test_version.py b/tests/test_version.py index f8afd3db..c0c2d9e6 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -62,5 +62,6 @@ class VersionTest(unittest.TestCase): self.assertVersionLess('1.0.3', '1.0.4') self.assertVersionLess('1.0.4', '1.0.5') self.assertVersionLess('1.0.5', '1.0.6') - self.assertVersionLess('1.0.6', __version__) - self.assertVersionLess(__version__, '1.0.8') + self.assertVersionLess('1.0.6', '1.0.7') + self.assertVersionLess('1.0.7', __version__) + self.assertVersionLess(__version__, '1.0.9') From 9a934c6e9cd61f48149d39156d23ac028a2ffc9f Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 22 Jul 2015 18:31:09 +0200 Subject: [PATCH 3/3] docs: Update changelog for v1.0.8 --- docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2693201f..c966cc45 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog This changelog is used to track all major changes to Mopidy. -v1.0.8 (unreleased) +v1.0.8 (2015-07-22) =================== Bug fix release.