Skip to content

Commit 00efdb3

Browse files
author
github-actions
committed
Generated v11.0.0
1 parent d4eaa0e commit 00efdb3

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v11.0.0](https://github.com/fastly/fastly-rust/releases/tag/release/v11.0.0) (2025-08-28)
4+
5+
**Enhancements:**
6+
7+
- feat(rust): Update to use reqwest 0.12.
8+
39
## [v10.0.0](https://github.com/fastly/fastly-rust/releases/tag/release/v10.0.0) (2025-08-28)
410

511
**Breaking Changes:**

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastly-api"
3-
version = "10.0.0"
3+
version = "11.0.0"
44
authors = ["Fastly <[email protected]>"]
55
edition = "2021"
66
description = "Fastly API client"
@@ -16,7 +16,7 @@ serde_json = "^1.0"
1616
url = "^2.2"
1717

1818
[dependencies.reqwest]
19-
version = "^0.11"
19+
version = "^0.12"
2020
features = ["json", "multipart"]
2121

2222
[dev-dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Rust 2021 Edition
1515
Add the following to `Cargo.toml` under `[dependencies]`:
1616

1717
```toml
18-
fastly-api = "10.0.0"
18+
fastly-api = "11.0.0"
1919
```
2020

2121
## Usage

sig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"G": "bb3cb969", "D": "3441d86a"}
1+
{"G": "f0c8a4f9", "D": "d5c668b1"}

src/apis/configuration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl Default for Configuration {
4949

5050
Configuration {
5151
base_path: "https://api.fastly.com".to_owned(),
52-
user_agent: Some("fastly-rust/10.0.0/rust".to_owned()),
52+
user_agent: Some("fastly-rust/11.0.0/rust".to_owned()),
5353
client: reqwest::Client::new(),
5454
basic_auth: None,
5555
oauth_access_token: None,

0 commit comments

Comments
 (0)