2 Commits

Author SHA1 Message Date
Ritiek Malhotra
9795d7e9b8 Release v2.0.2 2020-05-18 15:16:00 +05:30
Ritiek Malhotra
bbe43da191 Bugfix: crash when skipping track with -m [Fixes #721] 2020-05-18 15:14:22 +05:30
3 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@ The release dates mentioned follow the format `DD-MM-YYYY`.
## [Unreleased]
## [2.0.2] (Hotfix Release) - 18-05-2020
### Fixed
- Skipping tracks with `-m` would crash.
## [2.0.1] (Hotfix Release) - 18-05-2020
### Fixed
- `-o m4a` would always fail.

View File

@@ -163,7 +163,7 @@ class MetadataSearch:
if video is None:
raise NoYouTubeVideoMatchError(
'No matching videos found on YouTube for the search query "{}".'.format(
search_query
query
)
)
return video

View File

@@ -1,2 +1,2 @@
__version__ = "2.0.1"
__version__ = "2.0.2"