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

Commit 1a06af1

Browse files
committed
Release 0.4.0
1 parent e8282f6 commit 1a06af1

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
Notable changes for the [gmusicapi-wrapper](https://github.com/thebigmunch/gmusicapi-wrapper) project. This project adheres to [Semantic Versioning](http://semver.org/).
44

55

6+
## [0.4.0](https://github.com/thebigmunch/gmusicapi-wrapper/releases/tag/0.4.0) (2016-06-03)
7+
8+
[Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/0.3.0...0.4.0)
9+
10+
### Added
11+
12+
* Add is_authenticated property to wrapper classes.
13+
* Add is_subscribed property to MobileClientWrapper.
14+
* Add exception handling to local file handlers.
15+
16+
### Changed
17+
18+
* A lot of refactoring.
19+
* Check all metadata field values for local files when filtering. Mutagen returns list values; previously only the first item in the list was checked.
20+
* Use wrapt module for decorators.
21+
* Change return of MusicManagerWrapper.download method.
22+
23+
### Fixed
24+
25+
* Fix code error in MusicManagerWrapper.upload that caused an error on failed uploads.
26+
* Fix %suggested% in template assigning same name to each song on multiple song downloads.
27+
28+
629
## [0.3.0](https://github.com/thebigmunch/gmusicapi-wrapper/releases/tag/0.3.0) (2016-02-29)
730

831
[Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/0.2.1...0.3.0)
@@ -30,7 +53,6 @@ Notable changes for the [gmusicapi-wrapper](https://github.com/thebigmunch/gmusi
3053
* Remove recursive parameter from get_local_* methods. max-depth=0 serves the same purpose.
3154

3255

33-
3456
## [0.2.1](https://github.com/thebigmunch/gmusicapi-wrapper/releases/tag/0.2.1) (2016-02-15)
3557

3658
[Commits](https://github.com/thebigmunch/gmusicapi-wrapper/compare/0.2.0...0.2.1)

gmusicapi_wrapper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding=utf-8
22

33
__title__ = 'gmusicapi_wrapper'
4-
__version__ = "0.3.0"
4+
__version__ = "0.4.0"
55
__license__ = 'MIT'
66
__copyright__ = 'Copyright 2016 thebigmunch <[email protected]>'
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
],
4040

4141
install_requires=[
42-
'gmusicapi >= 9.0.0', # Python 3 support, uploading/client_id fixes
42+
'gmusicapi >= 10.0.0',
4343
'mutagen',
4444
'wrapt'
4545
],

0 commit comments

Comments
 (0)