diff --git a/CHANGELOG.md b/CHANGELOG.md index 34f4704..e243f89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ twitch-dl changelog +**1.18.1 (2022-02-05)** + +* Fix issues with output formats (#87, #89) +* Fix issues when downloading clip with no game set (#78) +* Add option to use clip slug in `--output` format + **1.18.0 (2022-01-25)** * Add `--output` option to `download` command which allows setting output file diff --git a/changelog.yaml b/changelog.yaml index 8942105..3f736af 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,10 @@ +1.18.1: + date: 2022-02-05 + changes: + - "Fix issues with output formats (#87, #89)" + - "Fix issues when downloading clip with no game set (#78)" + - "Add option to use clip slug in `--output` format" + 1.18.0: date: 2022-01-25 changes: diff --git a/setup.py b/setup.py index 5b47ede..d46ee84 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ makes it faster. setup( name='twitch-dl', - version='1.18.0', + version='1.18.1', description='Twitch downloader', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/twitchdl/__init__.py b/twitchdl/__init__.py index 2ca220e..f408dda 100644 --- a/twitchdl/__init__.py +++ b/twitchdl/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.18.0" +__version__ = "1.18.1" CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko"