diff --git a/CHANGELOG.md b/CHANGELOG.md index 0967a1f..f9868ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe ## [Unreleased] +## [0.2.20] - 2021-05-13 +### Fixed +- HTTP/2 [`NO_ERROR`](https://docs.rs/h2/0.3.3/h2/struct.Reason.html#associatedconstant.NO_ERROR) handling (issue [#15]) +- Status display no longer prints every path when running in a small terminal + ## [0.2.19] - 2021-05-11 ### Fixed - Status display on Windows (issue [#14]) @@ -103,6 +108,7 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe ## [0.1.0] - 2020-04-21 (undocumented) +[#15]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/15 [#14]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/14 [#13]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/issues/13 [#11]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/pull/11 @@ -119,7 +125,8 @@ and this project loosely adheres to [Semantic Versioning](https://semver.org/spe [@Craeckie]: https://github.com/Craeckie [@funnym0nk3y]: https://github.com/funnym0nk3y [@Ma27]: https://github.com/Ma27 -[Unreleased]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.19...HEAD +[Unreleased]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.20...HEAD +[0.2.20]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.19...v0.2.20 [0.2.19]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.18...v0.2.19 [0.2.18]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.17...v0.2.18 [0.2.17]: https://github.com/FliegendeWurst/KIT-ILIAS-downloader/compare/v0.2.16...v0.2.17 diff --git a/Cargo.lock b/Cargo.lock index 57e26c6..ec166fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "KIT-ILIAS-downloader" -version = "0.2.19" +version = "0.2.20" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index d8880c2..0b5cf00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "KIT-ILIAS-downloader" -version = "0.2.19" +version = "0.2.20" authors = ["FliegendeWurst <2012gdwu@posteo.de>"] license = "GPL-2.0-or-later" edition = "2018" diff --git a/src/main.rs b/src/main.rs index 2f79ee3..9c28f86 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1017,7 +1017,7 @@ impl ILIAS { match result { Ok(x) => return Ok(x), Err(e) if attempt <= 3 && error_is_http2(&e) => { - warning!("encountered HTTP/2 NO_ERROR, retrying download.."); + warning!("encountered HTTP/2 NO_ERROR, retrying HEAD request.."); continue }, Err(e) => return Err(e)