diff --git a/CHANGELOG.md b/CHANGELOG.md index b9007d8..ad4b3a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ Twitch Downloader change log ============================ -1.9.0 (TBA) +1.9.0 (2020-06-10) ------------------ * **Breaking**: wrongly named `--max_workers` option changed to `--max-workers`. The shorthand option `-w` remains the same. +* Fix bug where `videos` command would crash if there was no game info (#21) +* Allow unicode characters in filenames, no longer strips e.g. cyrillic script 1.8.0 (2020-05-17) ------------------ diff --git a/setup.py b/setup.py index 02edd9d..c8d3aca 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ makes it faster. setup( name='twitch-dl', - version='1.8.0', + version='1.9.0', description='Twitch downloader', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/twitchdl/__init__.py b/twitchdl/__init__.py index 4193293..427cbd8 100644 --- a/twitchdl/__init__.py +++ b/twitchdl/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.8.0" +__version__ = "1.9.0" CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko"