Skip to content

Commit f36fea6

Browse files
authored
release: bump version to 0.3.0. (#17)
1 parent bb1cbc8 commit f36fea6

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.3.0 - 11-06-2025
11+
1012
#### Added
1113

1214
* Added `with_revalidation_hook` to allow for modifying revalidation request

Cargo.toml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-cache-stream"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "A HTTP cache implementation for streaming bodies."
55
rust-version = { workspace = true }
66
edition = { workspace = true }
@@ -74,15 +74,3 @@ tempfile = { workspace = true }
7474
tokio = { workspace = true, optional = true }
7575
tokio-util = { workspace = true, optional = true }
7676
tracing = { workspace = true }
77-
78-
[target.'cfg(windows)'.dependencies.windows-sys]
79-
version = "0.60"
80-
features = [
81-
"Win32_Foundation",
82-
"Win32_Storage",
83-
"Win32_Storage_FileSystem",
84-
"Win32_System",
85-
"Win32_System_IO",
86-
"Win32_Security",
87-
"Win32_System_Console",
88-
]

crates/reqwest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-cache-stream-reqwest"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "A caching middleware for reqwest that supports streaming bodies."
55
rust-version = { workspace = true }
66
edition = { workspace = true }
@@ -14,7 +14,7 @@ anyhow = { workspace = true }
1414
bytes = { workspace = true }
1515
futures = { workspace = true }
1616
http-body-util = { workspace = true }
17-
http-cache-stream = { path = "../..", version = "0.2.0" }
17+
http-cache-stream = { path = "../..", version = "0.3.0" }
1818
reqwest = { workspace = true, features = ["stream"] }
1919
reqwest-middleware = { workspace = true }
2020

0 commit comments

Comments
 (0)