From 0443888cd9b684bb2e3236cd314e041b97bfb3ff Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Tue, 16 Jan 2024 15:17:58 -0800 Subject: [PATCH] bump version 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 3aaa243..a330c8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -961,7 +961,7 @@ dependencies = [ [[package]] name = "kittycad" -version = "0.2.46" +version = "0.2.47" dependencies = [ "anyhow", "async-trait", diff --git a/VERSION.txt b/VERSION.txt index 6146105..b14085d 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.2.46 +0.2.47 diff --git a/kittycad.rs.patch.json b/kittycad.rs.patch.json index e5778f1..5256ff9 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.46\"" + "install": "[dependencies]\nkittycad = \"0.2.47\"" } }, { diff --git a/kittycad/Cargo.toml b/kittycad/Cargo.toml index 41a4dc6..a3b1bac 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.46" +version = "0.2.47" 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 7253fd3..ddafbd7 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.46" +kittycad = "0.2.47" ``` ## Basic example diff --git a/kittycad/src/lib.rs b/kittycad/src/lib.rs index 622e849..d1320bb 100644 --- a/kittycad/src/lib.rs +++ b/kittycad/src/lib.rs @@ -29,7 +29,7 @@ //! //! ```toml //! [dependencies] -//! kittycad = "0.2.46" +//! kittycad = "0.2.47" //! ``` //! //! ## Basic example