From 6022f2e64a1d64675ed662ccaabe900a172cf3db Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Fri, 15 Aug 2025 14:15:08 -0400 Subject: [PATCH] release: bump version to 0.2.0. Also add a missing CHANGELOG. --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Cargo.toml | 2 +- crates/reqwest/Cargo.toml | 4 ++-- 3 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..029338a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## Unreleased + +## 0.2.0 - 08-15-2025 + +#### Changed + +* Refactored the cache implementation so that response bodies being cached are + streamed to storage while being read from the response ([#11](https://github.com/stjude-rust-labs/http-cache-stream/pull/11)). + +#### Fixed + +* Fixed an issue with Azure Storage incorrect 304 responses were causing an + error ([#10](https://github.com/stjude-rust-labs/http-cache-stream/pull/10)). + +## 0.1.0 - 03-31-2025 + +#### Added + +* Initial release of the crate. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 38e4410..e50ca71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-cache-stream" -version = "0.1.0" +version = "0.2.0" description = "A HTTP cache implementation for streaming bodies." rust-version = { workspace = true } edition = { workspace = true } diff --git a/crates/reqwest/Cargo.toml b/crates/reqwest/Cargo.toml index 9b9d93e..7fb726d 100644 --- a/crates/reqwest/Cargo.toml +++ b/crates/reqwest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-cache-stream-reqwest" -version = "0.1.0" +version = "0.2.0" description = "A caching middleware for reqwest that supports streaming bodies." rust-version = { workspace = true } edition = { workspace = true } @@ -10,7 +10,7 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -http-cache-stream = { path = "../.." , version = "0.1.0" } +http-cache-stream = { path = "../.." , version = "0.2.0" } anyhow = { workspace = true } reqwest = { workspace = true, features = ["stream"] } reqwest-middleware = { workspace = true }