diff --git a/CHANGELOG.md b/CHANGELOG.md index cbad1b7..73bd299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/prefix-dev/async_http_range_reader/compare/v0.9.1...v0.10.0) - 2026-03-24 + +### Fixed + +- Avoid panics when content is longer than content length header ([#33](https://github.com/prefix-dev/async_http_range_reader/pull/33)) + +### Other + +- Use `std::io::Error::other(_)` and declare MSRV 1.74 ([#25](https://github.com/prefix-dev/async_http_range_reader/pull/25)) +- Fix new clippy lints ([#27](https://github.com/prefix-dev/async_http_range_reader/pull/27)) + ## [0.9.1](https://github.com/prefix-dev/async_http_range_reader/compare/v0.9.0...v0.9.1) - 2024-11-12 ### Other diff --git a/Cargo.lock b/Cargo.lock index 3b46067..6a42c0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "async_http_range_reader" -version = "0.9.1" +version = "0.10.0" dependencies = [ "assert_matches", "async_zip", diff --git a/Cargo.toml b/Cargo.toml index 3ff7d89..a4f9ba9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "async_http_range_reader" authors = ["Bas Zalmstra "] -version = "0.9.1" +version = "0.10.0" edition = "2021" description = "A library for streaming reading of files over HTTP using range requests" license = "MIT"