diff --git a/CHANGELOG.md b/CHANGELOG.md index 28591b8..55f5643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. +## [0.5.1](https://github.com/aschey/stream-download-rs/compare/0.5.0..0.5.1) - 2024-03-31 + +### Bug Fixes + +- Only log appropriate seek errors ([#49](https://github.com/aschey/stream-download-rs/pull/49)) - ([b6a900c](https://github.com/aschey/stream-download-rs/commit/b6a900cde093cab486fd886e45a3ca58d9862645)) + +### Features + +- Use native async traits ([#45](https://github.com/aschey/stream-download-rs/pull/45)) - ([3c61e78](https://github.com/aschey/stream-download-rs/commit/3c61e78e0c475688f085d504eaf1e1533df835c9)) +- Make seek buffer size configurable ([#48](https://github.com/aschey/stream-download-rs/pull/48)) - ([42783d6](https://github.com/aschey/stream-download-rs/commit/42783d6294f6d6419e04f65d2aac68090412e685)) + +### Miscellaneous Tasks + +- Update reqwest to 0.12 ([#46](https://github.com/aschey/stream-download-rs/pull/46)) - ([ed75e88](https://github.com/aschey/stream-download-rs/commit/ed75e880a89b89bc780fdf1894c1bec228ccb686)) + + ## [0.5.0](https://github.com/aschey/stream-download-rs/compare/0.4.2..0.5.0) - 2024-03-20 ### Features diff --git a/Cargo.toml b/Cargo.toml index dea5de3..b380f5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "stream-download" -version = "0.5.0" +version = "0.5.1" rust-version = "1.75.0" authors = ["Austin Schey "] license = "MIT OR Apache-2.0"