Skip to content

Commit 8dfac04

Browse files
committed
bump
Signed-off-by: Jess Frazelle <github@jessfraz.com>
1 parent 1fa5307 commit 8dfac04

7 files changed

Lines changed: 90 additions & 21 deletions

File tree

Cargo.lock

Lines changed: 83 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.32
1+
0.3.33

kittycad.rs.patch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"path": "/info/x-rust",
55
"value": {
66
"client": "// Authenticate via an API token.\nlet client = kittycad::Client::new(\"$TOKEN\");\n\n// - OR -\n\n// Authenticate with your token and host parsed from the environment variables:\n// `KITTYCAD_API_TOKEN`.\nlet client = kittycad::Client::new_from_env();",
7-
"install": "[dependencies]\nkittycad = \"0.3.32\""
7+
"install": "[dependencies]\nkittycad = \"0.3.33\""
88
}
99
},
1010
{

kittycad/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kittycad"
33
description = "A fully generated & opinionated API client for the KittyCAD API."
4-
version = "0.3.32"
4+
version = "0.3.33"
55
documentation = "https://docs.rs/kittycad"
66
readme = "README.md"
77
repository = "https://github.com/KittyCAD/kittycad.rs/tree/main/kittycad"
@@ -27,7 +27,7 @@ parse-display = "0.10.0"
2727
phonenumber = "0.3.5"
2828
rand = { version = "0.9", optional = true }
2929
getrandom = { version = "0.3" }
30-
reqwest = { version = "=0.12.12", default-features = false, features = ["json", "multipart", "rustls-tls"], optional = true }
30+
reqwest = { version = "0.12.14", default-features = false, features = ["json", "multipart", "rustls-tls"], optional = true }
3131
reqwest-conditional-middleware = { version = "0.4", optional = true }
3232
reqwest-middleware = { version = "0.4", optional = true, features = ["json", "multipart", "http2", "rustls-tls"] }
3333
reqwest-retry = { version = "0.7", optional = true }

kittycad/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To install the library, add the following to your `Cargo.toml` file.
3131

3232
```toml
3333
[dependencies]
34-
kittycad = "0.3.32"
34+
kittycad = "0.3.33"
3535
```
3636

3737
## Basic example

kittycad/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//!
3030
//! ```toml
3131
//! [dependencies]
32-
//! kittycad = "0.3.32"
32+
//! kittycad = "0.3.33"
3333
//! ```
3434
//!
3535
//! ## Basic example

openapitor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ parse-display = "0.10.0"
605605
phonenumber = "0.3.5"
606606
rand = {{ version = "0.9", optional = true }}
607607
getrandom = {{ version = "0.3" }}
608-
reqwest = {{ version = "=0.12.12", default-features = false, features = ["json", "multipart", "rustls-tls"], optional = true }}
608+
reqwest = {{ version = "0.12.14", default-features = false, features = ["json", "multipart", "rustls-tls"], optional = true }}
609609
reqwest-conditional-middleware = {{ version = "0.4", optional = true }}
610610
reqwest-middleware = {{ version = "0.4", optional = true, features = ["json", "multipart", "http2", "rustls-tls"] }}
611611
reqwest-retry = {{ version = "0.7", optional = true }}

0 commit comments

Comments
 (0)