diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d9aa47..d39c6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,19 @@ and this project adheres to ## [Unreleased] +## [2.1.0] - 2022-09-10 + +### Added + +- Added the ability to use a proxy. [#33] + +### Fixed + +- Fixed the filename parsing when constructing from URL. [#33] + +[#33]: https://github.com/rgreinho/trauma/pull/33 +[2.1.0]: https://github.com/rgreinho/trauma/releases/tag/2.1.0 + ## [2.0.0] - 2022-04-21 ### Added @@ -22,6 +35,10 @@ and this project adheres to - Fixed a bug preventing the progress bars to be disabled. [#29] +[#26]: https://github.com/rgreinho/trauma/pull/26 +[#29]: https://github.com/rgreinho/trauma/pull/29 +[2.0.0]: https://github.com/rgreinho/trauma/releases/tag/2.0.0 + ## [1.1.0] - 2022-04-15 ### Added @@ -35,6 +52,10 @@ and this project adheres to - Hide any or both of them - Add preconfigured styles +[#16]: https://github.com/rgreinho/trauma/pull/16 +[#24]: https://github.com/rgreinho/trauma/pull/24 +[1.1.0]: https://github.com/rgreinho/trauma/releases/tag/1.1.0 + ## [1.0.0] - 2022-03-29 Initial version with the following feature set: @@ -53,9 +74,3 @@ Initial version with the following feature set: - Display the total progress [1.0.0]: https://github.com/rgreinho/trauma/releases/tag/1.0.0 -[1.1.0]: https://github.com/rgreinho/trauma/releases/tag/1.1.0 -[2.0.0]: https://github.com/rgreinho/trauma/releases/tag/2.0.0 -[#16]: https://github.com/rgreinho/trauma/pull/16 -[#24]: https://github.com/rgreinho/trauma/pull/24 -[#26]: https://github.com/rgreinho/trauma/pull/26 -[#29]: https://github.com/rgreinho/trauma/pull/29 diff --git a/Cargo.toml b/Cargo.toml index 84c4a0f..8e01970 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trauma" -version = "2.0.0" +version = "2.1.0" edition = "2021" license = "MIT" description = "Simplify and prettify HTTP downloads" @@ -10,9 +10,6 @@ readme = "README.md" categories = ["concurrency"] keywords = ["http", "download", "async", "tokio", "indicatif"] - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] futures = "0.3.21" indicatif = "0.17.0-rc.10" diff --git a/README.md b/README.md index 1c48870..0d04cc2 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ monitoring the process. - Library only - HTTP(S) downloads +- Support download via proxies - Download files via providing a list of URLs - Ability to rename downloaded files - Ability to configure the download manager