From 4d93008c959dc5656ee687e19d71b94028e226df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 18:31:14 +0000 Subject: [PATCH] chore: release v0.9.2 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbad1b7..47b1f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.2](https://github.com/prefix-dev/async_http_range_reader/compare/v0.9.1...v0.9.2) - 2026-02-09 + +### 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..b05e672 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "async_http_range_reader" -version = "0.9.1" +version = "0.9.2" dependencies = [ "assert_matches", "async_zip", diff --git a/Cargo.toml b/Cargo.toml index 3ff7d89..f446626 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.9.2" edition = "2021" description = "A library for streaming reading of files over HTTP using range requests" license = "MIT"