diff --git a/CHANGELOG.md b/CHANGELOG.md index 646f78a..43c2572 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ twitch-dl changelog +### [2.0.1 (2022-09-09)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.1) + +* Fix an issue where a temp vod file would be renamed while still being open, + which caused an exception on Windows (#111) + ### [2.0.0 (2022-08-18)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0) This release switches from using `requests` to `httpx` for making http requests, diff --git a/changelog.yaml b/changelog.yaml index af7180d..f0268ee 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +2.0.1: + date: 2022-09-09 + changes: + - "Fix an issue where a temp vod file would be renamed while still being open, which caused an exception on Windows (#111)" + 2.0.0: date: 2022-08-18 description: | diff --git a/docs/changelog.md b/docs/changelog.md index 646f78a..43c2572 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,11 @@ twitch-dl changelog +### [2.0.1 (2022-09-09)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.1) + +* Fix an issue where a temp vod file would be renamed while still being open, + which caused an exception on Windows (#111) + ### [2.0.0 (2022-08-18)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0) This release switches from using `requests` to `httpx` for making http requests, diff --git a/setup.py b/setup.py index 3c8d64d..339e798 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ makes it faster. setup( name="twitch-dl", - version="2.0.0", + version="2.0.1", description="Twitch downloader", long_description=long_description.strip(), author="Ivan Habunek", diff --git a/twitchdl/__init__.py b/twitchdl/__init__.py index 3b7dcae..cbba1a6 100644 --- a/twitchdl/__init__.py +++ b/twitchdl/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.0.0" +__version__ = "2.0.1" CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko"