diff --git a/docs/changelog.rst b/docs/changelog.rst index 0aedd763..320c776a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -130,7 +130,7 @@ Internal changes :issue:`1115`) -v1.0.8 (UNRELEASED) +v1.0.8 (2015-07-22) =================== Bug fix release. 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. diff --git a/mopidy/__init__.py b/mopidy/__init__.py index 3dbdb91e..4752f080 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.7' +__version__ = '1.0.8' diff --git a/tests/test_version.py b/tests/test_version.py index f3bf9024..e914efc4 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -63,5 +63,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')