From c8d38b5512af0db6dc192d525cd21a373b09f781 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 17 Aug 2022 10:57:18 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 12 ++++++++---- changelog.yaml | 9 +++++++-- docs/changelog.md | 15 +++++++++++++++ 3 files changed, 30 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d17df99..03a5688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,16 @@ twitch-dl changelog ### [2.0.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0) -* Switch from `requests` to `httpx` for making http requests, this enables using - asyncio for concurrency. No breaking changes. -* Better progress meter, updates on each chunk downloaded, instead of after each - VOD downloaded. +This release switches from using `requests` to `httpx` for making http requests, +and from threads to `asyncio` for concurrency. This enables easier +implementation of new features, but has no breaking changes for the CLI. + * Add `--rate-limit` option to `download` for limiting maximum bandwith when downloading. +* Improved progress meter, updates on each chunk downloaded, instead of each VOD + downloaded. +* Improved speed estimate, displays recent speed instead of average speed since + the start of download. ### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0) diff --git a/changelog.yaml b/changelog.yaml index c6a55cf..ced35eb 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,9 +1,14 @@ 2.0.0: date: "TBA" + description: | + This release switches from using `requests` to `httpx` for making http + requests, and from threads to `asyncio` for concurrency. This enables + easier implementation of new features, but has no breaking changes for the + CLI. changes: - - "Switch from `requests` to `httpx` for making http requests, this enables using asyncio for concurrency. No breaking changes." - - "Better progress meter, updates on each chunk downloaded, instead of after each VOD downloaded." - "Add `--rate-limit` option to `download` for limiting maximum bandwith when downloading." + - "Improved progress meter, updates on each chunk downloaded, instead of each VOD downloaded." + - "Improved speed estimate, displays recent speed instead of average speed since the start of download." 1.22.0: date: 2022-06-25 diff --git a/docs/changelog.md b/docs/changelog.md index 8722319..902cfcc 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,21 @@ twitch-dl changelog +### [2.0.0 (TBA)](https://github.com/ihabunek/twitch-dl/releases/tag/2.0.0) + +This release switches from using `requests` to `httpx` for making http +requests, and from threads to `asyncio` for concurrency. This enables +easier implementation of new features, but has no breaking changes for the +CLI. + + +* Add `--rate-limit` option to `download` for limiting maximum bandwith when + downloading. +* Improved progress meter, updates on each chunk downloaded, instead of each VOD + downloaded. +* Improved speed estimate, displays recent speed instead of average speed since + the start of download. + ### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0) * Add support for downloading subscriber-only VODs (#48, thanks @cemiu)