diff --git a/Cargo.lock b/Cargo.lock index d1379bc8..f513b8a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1038,7 +1038,7 @@ dependencies = [ [[package]] name = "kittycad" -version = "0.3.24" +version = "0.3.25" dependencies = [ "anyhow", "async-trait", diff --git a/VERSION.txt b/VERSION.txt index cfe389e9..88dbf46f 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.3.24 +0.3.25 diff --git a/kittycad.rs.patch.json b/kittycad.rs.patch.json index b198cd12..799839e8 100644 --- a/kittycad.rs.patch.json +++ b/kittycad.rs.patch.json @@ -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.24\"" + "install": "[dependencies]\nkittycad = \"0.3.25\"" } }, { diff --git a/kittycad/Cargo.toml b/kittycad/Cargo.toml index 6fad0608..665084fe 100644 --- a/kittycad/Cargo.toml +++ b/kittycad/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kittycad" description = "A fully generated & opinionated API client for the KittyCAD API." -version = "0.3.24" +version = "0.3.25" documentation = "https://docs.rs/kittycad" readme = "README.md" repository = "https://github.com/KittyCAD/kittycad.rs/tree/main/kittycad" diff --git a/kittycad/README.md b/kittycad/README.md index bf632194..1defe4f7 100644 --- a/kittycad/README.md +++ b/kittycad/README.md @@ -31,7 +31,7 @@ To install the library, add the following to your `Cargo.toml` file. ```toml [dependencies] -kittycad = "0.3.24" +kittycad = "0.3.25" ``` ## Basic example diff --git a/kittycad/src/lib.rs b/kittycad/src/lib.rs index 789e2b65..a0e7d692 100644 --- a/kittycad/src/lib.rs +++ b/kittycad/src/lib.rs @@ -29,7 +29,7 @@ //! //! ```toml //! [dependencies] -//! kittycad = "0.3.24" +//! kittycad = "0.3.25" //! ``` //! //! ## Basic example