Skip to content
This repository has been archived by the owner on Oct 20, 2018. It is now read-only.

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigmunch committed Feb 29, 2016
1 parent 44014a1 commit 84f5de5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
* First package release for PyPi.
2 changes: 1 addition & 1 deletion gmusicapi_wrapper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding=utf-8

__title__ = 'gmusicapi_wrapper'
__version__ = "0.2.1"
__version__ = "0.3.0"
__license__ = 'MIT'
__copyright__ = 'Copyright 2016 thebigmunch <[email protected]>'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
],

install_requires=[
'gmusicapi >= 8.0.0, < 9.0.0', # Python 3 support
'gmusicapi >= 8.0.0', # Python 3 support
'mutagen'
],

Expand Down

0 comments on commit 84f5de5

Please sign in to comment.