From 76372d5312cb15822052738a153ae0d370fb0c8e Mon Sep 17 00:00:00 2001 From: Matt Date: Sat, 29 Feb 2020 10:57:15 -0500 Subject: [PATCH] Version bump to 0.7.1 --- CHANGELOG.rst | 9 +++++++++ mopidy_jellyfin/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bbd4e15..261ac25 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +v0.7.1 +--------------------------------------- + +- Fix path to cache dir +- Add ability to queue tracks during remote control +- Add ability to resume playback during remote control +- Fix crash when video files are in playlists +- Start at the correct song index during remote control + v0.7.0 --------------------------------------- diff --git a/mopidy_jellyfin/__init__.py b/mopidy_jellyfin/__init__.py index 7ea7533..7e9d105 100644 --- a/mopidy_jellyfin/__init__.py +++ b/mopidy_jellyfin/__init__.py @@ -7,7 +7,7 @@ from mopidy import config, ext -__version__ = '0.7.0' +__version__ = '0.7.1' logger = logging.getLogger(__name__)