Bump version, add changelog

This commit is contained in:
Ivan Habunek
2022-09-09 08:11:46 +02:00
parent c9ab6237e8
commit 33b5cc0a01
5 changed files with 17 additions and 2 deletions

View File

@ -3,6 +3,11 @@ twitch-dl changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
### [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,

View File

@ -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: |

View File

@ -3,6 +3,11 @@ twitch-dl changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
### [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,

View File

@ -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",

View File

@ -1,3 +1,3 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko"