diff --git a/CHANGELOG.md b/CHANGELOG.md index f8d717d..486ae5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,34 @@ Notable changes for the [gmusicapi-wrapper](https://github.com/thebigmunch/gmusicapi-wrapper) project. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.0](https://github.com/thebigmunch/gmusicapi-wrapper/releases/tag/0.3.0) (2016-02-29) + +[Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/0.2.1...0.3.0) + +### Added + +* Add get_local_playlists method to wrapper base class. +* Add get_local_playlist_songs method to wrapper base class. +* Add paramaters to MusicManagerWrapper.get_google_songs to enable/disable uploaded/purchased songs from being returned. +* Add get_google_playlist method to MobileClientWrapper. +* Add get_google_playlist_songs method to MobileClientWrapper. +* Add exclude_filepaths utility function. +* Add get_supported_filepaths utility function. + +### Removed + +* Remove exclude_path utility function. + +### Changed + +* Change log parameter to enable_logging in login methods. +* Change return value of MusicManagerWrapper.upload method. +* Change signature of walk_depth utility function. +* Remove formats parameter from get_local_* methods in favor of top-level constants. +* Remove recursive parameter from get_local_* methods. max-depth=0 serves the same purpose. + + + ## [0.2.1](https://github.com/thebigmunch/gmusicapi-wrapper/releases/tag/0.2.1) (2016-02-15) [Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/0.2.0...0.2.1) @@ -38,4 +66,4 @@ Notable changes for the [gmusicapi-wrapper](https://github.com/thebigmunch/gmusi [Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/ea58bb5fc797f358755d1f8280ea15a387c19fd2...0.1.0) -* First package release for PyPi. \ No newline at end of file +* First package release for PyPi. diff --git a/gmusicapi_wrapper/__init__.py b/gmusicapi_wrapper/__init__.py index fa5cbd9..284513d 100644 --- a/gmusicapi_wrapper/__init__.py +++ b/gmusicapi_wrapper/__init__.py @@ -1,7 +1,7 @@ # coding=utf-8 __title__ = 'gmusicapi_wrapper' -__version__ = "0.2.1" +__version__ = "0.3.0" __license__ = 'MIT' __copyright__ = 'Copyright 2016 thebigmunch ' diff --git a/setup.py b/setup.py index 70b8050..d1bacb7 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ ], install_requires=[ - 'gmusicapi >= 8.0.0, < 9.0.0', # Python 3 support + 'gmusicapi >= 8.0.0', # Python 3 support 'mutagen' ],