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

Commit ec282b5

Browse files
committed
Release 0.2.1
1 parent ac48f47 commit ec282b5

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
Notable changes for the [gmusicapi-scripts](https://github.com/thebigmunch/gmusicapi-scripts) project. This project uses [Semantic Versioning](http://semver.org/) principles.
44

5+
6+
## [0.2.1](https://github.com/thebigmunch/gmusicapi-scripts/releases/tag/0.2.1) (2016-02-15)
7+
8+
[Commits](https://github.com/thebigmunch/gmusicapi-scripts/compare/0.2.0...0.2.1)
9+
10+
### Fixed
11+
12+
* Use correct track number metadata key for sorting.
13+
* Fix delete on success check.
14+
15+
### Changed
16+
17+
* Update supported gmusicapi-wrapper versions.
18+
19+
520
## [0.2.0](https://github.com/thebigmunch/gmusicapi-scripts/releases/tag/0.2.0) (2016-02-13)
621

722
[Commits](https://github.com/thebigmunch/gmusicapi-scripts/compare/0.1.0...0.2.0)

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
include CONTRIBUTING.md LICENSE README.md USAGE.md
2-
include gmusicapi_scripts/_version.py

gmusicapi_scripts/__init__.py

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

33
__title__ = 'gmusicapi_scripts'
4-
__version__ = "0.2.0"
4+
__version__ = "0.2.1"
55
__license__ = 'MIT'
66
__copyright__ = 'Copyright 2016 thebigmunch <[email protected]>'

setup.py

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

4141
install_requires=[
42-
'gmusicapi-wrapper == 0.2.0',
42+
'gmusicapi-wrapper >= 0.2.0, < 0.3.0',
4343
'docopt-unicode'
4444
],
4545

@@ -53,6 +53,4 @@
5353
'gmupload=gmusicapi_scripts.gmupload:main'
5454
]
5555
},
56-
57-
zip_safe=False
5856
)

0 commit comments

Comments
 (0)