diff --git a/Cargo.lock b/Cargo.lock index f3f44e7c..6e6ac6ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -961,7 +961,7 @@ dependencies = [ [[package]] name = "kittycad" -version = "0.2.59" +version = "0.2.60" dependencies = [ "anyhow", "async-trait", diff --git a/VERSION.txt b/VERSION.txt index b873c1f1..9cc5016b 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.2.59 +0.2.60 diff --git a/kittycad.rs.patch.json b/kittycad.rs.patch.json index 72afbabd..2e9f12e0 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.2.59\"" + "install": "[dependencies]\nkittycad = \"0.2.60\"" } }, { diff --git a/kittycad/Cargo.toml b/kittycad/Cargo.toml index 4b9d581e..68c2e671 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.2.59" +version = "0.2.60" 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 e96c10c3..8be1df20 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.2.59" +kittycad = "0.2.60" ``` ## Basic example diff --git a/kittycad/src/lib.rs b/kittycad/src/lib.rs index 5fd13c5f..2febfed1 100644 --- a/kittycad/src/lib.rs +++ b/kittycad/src/lib.rs @@ -29,7 +29,7 @@ //! //! ```toml //! [dependencies] -//! kittycad = "0.2.59" +//! kittycad = "0.2.60" //! ``` //! //! ## Basic example