Skip to content

Commit

Permalink
Relax dep on schemars (#439)
Browse files Browse the repository at this point in the history
* Relax dep on schemars

Consumers of this library should be able to use 0.8.17

* Release 0.3.5
  • Loading branch information
adamchalmers committed Jun 17, 2024
1 parent ffc34fc commit b267e15
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.4
0.3.5
2 changes: 1 addition & 1 deletion kittycad.rs.patch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"path": "/info/x-rust",
"value": {
"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();",
"install": "[dependencies]\nkittycad = \"0.3.4\""
"install": "[dependencies]\nkittycad = \"0.3.5\""
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions kittycad/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kittycad"
description = "A fully generated & opinionated API client for the KittyCAD API."
version = "0.3.4"
version = "0.3.5"
documentation = "https://docs.rs/kittycad"
readme = "README.md"
repository = "https://github.com/KittyCAD/kittycad.rs/tree/main/kittycad"
Expand Down Expand Up @@ -32,7 +32,7 @@ reqwest-conditional-middleware = { version = "0.2.1", optional = true }
reqwest-middleware = { version = "0.2.2", optional = true }
reqwest-retry = { version = "0.2.2", optional = true }
reqwest-tracing = { version = "0.4.4", features = ["opentelemetry_0_17"], optional = true }
schemars = { version = "0.8.21", features = ["bigdecimal04", "bytes", "chrono", "url", "uuid1"] }
schemars = { version = "0.8.17", features = ["bigdecimal04", "bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion kittycad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
kittycad = "0.3.4"
kittycad = "0.3.5"
```

## Basic example
Expand Down
2 changes: 1 addition & 1 deletion kittycad/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
//!
//! ```toml
//! [dependencies]
//! kittycad = "0.3.4"
//! kittycad = "0.3.5"
//! ```
//!
//! ## Basic example
Expand Down
2 changes: 1 addition & 1 deletion openapitor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ reqwest-conditional-middleware = {{ version = "0.2.1", optional = true }}
reqwest-middleware = {{ version = "0.2.2", optional = true }}
reqwest-retry = {{ version = "0.2.2", optional = true }}
reqwest-tracing = {{ version = "0.4.4", features = ["opentelemetry_0_17"], optional = true }}
schemars = {{ version = "0.8.21", features = ["bigdecimal04", "bytes", "chrono", "url", "uuid1"] }}
schemars = {{ version = "0.8.17", features = ["bigdecimal04", "bytes", "chrono", "url", "uuid1"] }}
serde = {{ version = "1", features = ["derive"] }}
serde_bytes = "0.11"
serde_json = "1"
Expand Down

0 comments on commit b267e15

Please sign in to comment.