diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c991be8..767be89 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +v0.5.3 +--------------------------------------- + +- Fix bug with artists/albums not matching if metadata has different capitalization +- Artists that have special characters in their names +- Browsing albums returns correct datatype +- AddresseFlake8 errors + v0.5.2 --------------------------------------- diff --git a/mopidy_jellyfin/__init__.py b/mopidy_jellyfin/__init__.py index a96d1ea..eac8d35 100644 --- a/mopidy_jellyfin/__init__.py +++ b/mopidy_jellyfin/__init__.py @@ -6,7 +6,7 @@ from mopidy import config, ext -__version__ = '0.5.2' +__version__ = '0.5.3' logger = logging.getLogger(__name__)