diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c249d8..c082d9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased](https://github.com/thebigmunch/google-music-utils/tree/master) -[Commits](https://github.com/thebigmunch/google-music-utils/compare/2.0.0...master) +[Commits](https://github.com/thebigmunch/google-music-utils/compare/2.0.1...master) + + +## [2.0.1](https://github.com/thebigmunch/google-music-utils/releases/tag/2.0.1) (2019-01-16) + +[Commits](https://github.com/thebigmunch/google-music-utils/compare/2.0.0...2.0.1) ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 83a3393..4e252da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "google-music-utils" description = "A set of utility functionality for google-music and related projects." -version = "2.0.0" +version = "2.0.1" license = "MIT" diff --git a/src/google_music_utils/__about__.py b/src/google_music_utils/__about__.py index 5c9ad69..d4d9dc6 100644 --- a/src/google_music_utils/__about__.py +++ b/src/google_music_utils/__about__.py @@ -10,7 +10,7 @@ __summary__ = 'A set of utility functionality for google-music and related projects.' __url__ = 'https://github.com/thebigmunch/google-music-utils' -__version__ = '2.0.0' +__version__ = '2.0.1' __version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) __author__ = 'thebigmunch'