diff --git a/CHANGELOG.md b/CHANGELOG.md index f6ed159..30f4856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ Notable changes for the [gmusicapi-scripts](https://github.com/thebigmunch/gmusicapi-scripts) project. This project uses [Semantic Versioning](http://semver.org/) principles. +## [0.3.0](https://github.com/thebigmunch/gmusicapi-scripts/releases/tag/0.3.0) (2016-02-29) + +[Commits](https://github.com/thebigmunch/gmusicapi-scripts/compare/0.2.1...0.3.0) + +### Added + +* Output songs to be filtered in dry-run. + +### Changed + +* Change --include-all to --all-includes to match parameter change in gmusicapi-wrapper. +* Change --exclude-all to --all-excludes to match parameter change in gmusicapi-wrapper. +* Change behavior of --max-depth=0; it now limits to the current directory level instead of being infinite recursion. + + ## [0.2.1](https://github.com/thebigmunch/gmusicapi-scripts/releases/tag/0.2.1) (2016-02-15) [Commits](https://github.com/thebigmunch/gmusicapi-scripts/compare/0.2.0...0.2.1) @@ -38,4 +53,4 @@ Notable changes for the [gmusicapi-scripts](https://github.com/thebigmunch/gmusi [Commits](https://github.com/thebigmunch/gmusicapi-scripts/compare/b66da631025f5074df0e290aa515b7f18d14fde8...0.1.0) -* First package release for PyPi. \ No newline at end of file +* First package release for PyPi. diff --git a/gmusicapi_scripts/__init__.py b/gmusicapi_scripts/__init__.py index 285fbd6..dd9b772 100755 --- a/gmusicapi_scripts/__init__.py +++ b/gmusicapi_scripts/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- __title__ = 'gmusicapi_scripts' -__version__ = "0.2.1" +__version__ = "0.3.0" __license__ = 'MIT' __copyright__ = 'Copyright 2016 thebigmunch ' diff --git a/setup.py b/setup.py index 4dc1d77..b6a11d4 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ ], install_requires=[ - 'gmusicapi-wrapper >= 0.2.0, < 0.3.0', + 'gmusicapi-wrapper >= 0.3.0', 'docopt-unicode' ],