Merge pull request #494 from ritiek/release-v1.1.2

Release changes for v1.1.2
This commit is contained in:
Ritiek Malhotra
2019-02-10 20:52:42 +05:30
committed by GitHub
3 changed files with 13 additions and 2 deletions

View File

@@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Added ### Added
- -
### Changed
-
### Fixed
-
## [1.1.2] - 2019-02-10
### Changed ### Changed
- Fetch all artist albums by default instead of only fetching the "album" type ([@ritiek](https://github.com/ritiek)) (#493) - Fetch all artist albums by default instead of only fetching the "album" type ([@ritiek](https://github.com/ritiek)) (#493)
- Option `-f` (`--folder`) is used when exporting text files using `-p` (`--playlist`) for playlists or `-b` (`--album`) for albums ([@Silverfeelin](https://github.com/Silverfeelin)) (#476) - Option `-f` (`--folder`) is used when exporting text files using `-p` (`--playlist`) for playlists or `-b` (`--album`) for albums ([@Silverfeelin](https://github.com/Silverfeelin)) (#476)

View File

@@ -1 +1 @@
__version__ = "1.1.1" __version__ = "1.1.2"

View File

@@ -256,7 +256,10 @@ def get_arguments(raw_args=None, to_group=True, to_merge=True):
"-c", "--config", default=None, help="path to custom config.yml file" "-c", "--config", default=None, help="path to custom config.yml file"
) )
parser.add_argument( parser.add_argument(
"-V", "--version", action="version", version="%(prog)s {}".format(spotdl.__version__) "-V",
"--version",
action="version",
version="%(prog)s {}".format(spotdl.__version__),
) )
parsed = parser.parse_args(raw_args) parsed = parser.parse_args(raw_args)