Skip to content

Commit

Permalink
bumped versions, updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
06chaynes committed Jan 31, 2025
1 parent 9e5da4e commit 2a88ef4
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 11 deletions.
1 change: 1 addition & 0 deletions http-cache-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ categories = [
"web-programming::http-client"
]
edition = "2021"
rust-version = "1.71.1"

[dependencies]
anyhow = "1.0.95"
Expand Down
2 changes: 1 addition & 1 deletion http-cache-reqwest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Uses [reqwest-middleware](https://github.com/TrueLayer/reqwest-middleware) for m

## Minimum Supported Rust Version (MSRV)

1.67.1
1.71.1

## Install

Expand Down
13 changes: 13 additions & 0 deletions http-cache-surf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.14.1] - 2025-01-30

### Changed

- Updated the minimum versions of the following dependencies:
- http-cache [0.21.1]
- anyhow [1.0.95]
- async-trait [0.1.85]
- http [1.2.0]
- serde [1.0.217]
- url [2.5.4]
- thiserror [2.0.11]

## [0.14.0] - 2024-11-12

### Changed
Expand Down
21 changes: 11 additions & 10 deletions http-cache-surf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-cache-surf"
version = "0.14.0"
version = "0.14.1"
description = "http-cache middleware implementation for surf"
authors = ["Christian Haynes <[email protected]>", "Kat Marchán <[email protected]>"]
repository = "https://github.com/06chaynes/http-cache"
Expand All @@ -13,28 +13,29 @@ categories = [
"web-programming::http-client"
]
edition = "2021"
rust-version = "1.71.1"

[dependencies]
anyhow = "1.0.72"
async-trait = "0.1.72"
http = "1.1.0"
anyhow = "1.0.95"
async-trait = "0.1.85"
http = "1.2.0"
http-cache-semantics = "2.1.0"
http-types = "2.12.0"
serde = { version = "1.0.178", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
surf = { version = "2.3.2", default-features = false }
url = { version = "2.4.0", features = ["serde"] }
thiserror = "2.0.3"
url = { version = "2.5.4", features = ["serde"] }
thiserror = "2.0.11"

[dependencies.http-cache]
path = "../http-cache"
version = "0.20.0"
version = "0.20.1"
default-features = false
features = ["with-http-types"]

[dev-dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }
async-std = { version = "1.13.0", features = ["attributes"] }
surf = { version = "2.3.2", features = ["curl-client"] }
wiremock = "0.6.0"
wiremock = "0.6.2"

[features]
default = ["manager-cacache"]
Expand Down

0 comments on commit 2a88ef4

Please sign in to comment.