From 65915dc5354b9ca95d26969cd13f1d01e9e71b3b Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 18 Oct 2023 19:37:56 -0700 Subject: [PATCH] bump Signed-off-by: Jess Frazelle --- Cargo.lock | 2 +- VERSION.txt | 2 +- kittycad.rs.patch.json | 2 +- kittycad/Cargo.toml | 2 +- kittycad/README.md | 2 +- kittycad/src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 55c3f043..0ae4af67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "kittycad" -version = "0.2.34" +version = "0.2.35" dependencies = [ "anyhow", "async-trait", diff --git a/VERSION.txt b/VERSION.txt index 69ca2125..e7ccda1a 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.2.34 +0.2.35 diff --git a/kittycad.rs.patch.json b/kittycad.rs.patch.json index 1328c0b6..299d6d24 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.34\"" + "install": "[dependencies]\nkittycad = \"0.2.35\"" } }, { diff --git a/kittycad/Cargo.toml b/kittycad/Cargo.toml index 329b975d..a476701e 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.34" +version = "0.2.35" 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 7a062086..c9c5c6b7 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.34" +kittycad = "0.2.35" ``` ## Basic example diff --git a/kittycad/src/lib.rs b/kittycad/src/lib.rs index 46185f1a..6249cd28 100644 --- a/kittycad/src/lib.rs +++ b/kittycad/src/lib.rs @@ -29,7 +29,7 @@ //! //! ```toml //! [dependencies] -//! kittycad = "0.2.34" +//! kittycad = "0.2.35" //! ``` //! //! ## Basic example