From 5744e0fc89d92f5300974d607b7970c834adde35 Mon Sep 17 00:00:00 2001 From: Stephen Leitnick Date: Fri, 19 Aug 2022 11:00:02 -0400 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- docs/cli/cli-install.md | 4 ++-- docs/lib/lib-install.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f268c7b..88afa4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -651,7 +651,7 @@ dependencies = [ [[package]] name = "rbxcloud" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 801549e..15e71e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rbxcloud" -version = "0.2.0" +version = "0.2.1" description = "CLI and SDK for the Roblox Open Cloud APIs" authors = ["Stephen Leitnick"] license = "MIT" diff --git a/README.md b/README.md index 518b5e4..014bca8 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Possible use-cases: ### Aftman Run the `aftman add` command within your project directory. This will add `rbxcloud` to the project's `aftman.toml` file (or create one if it doesn't yet exist). ```sh -$ aftman add Sleitnick/rbxcloud@0.2.0 +$ aftman add Sleitnick/rbxcloud@0.2.1 ``` ### From Release @@ -32,7 +32,7 @@ Visit the documentation site for information on installation and usage: https:// To use `rbxcloud` in a Rust project, simply add `rbxcloud` to the `Cargo.toml` dependency list. ```toml [dependencies] -rbxcloud = "0.2.0" +rbxcloud = "0.2.1" ``` Alternatively, use `cargo add`. diff --git a/docs/cli/cli-install.md b/docs/cli/cli-install.md index 2d58433..b9e122e 100644 --- a/docs/cli/cli-install.md +++ b/docs/cli/cli-install.md @@ -7,7 +7,7 @@ There are a few different ways to install the `rbxcloud` CLI. ### [Aftman](https://github.com/LPGhatguy/aftman) (Preferred) Run the `aftman add` command within your project directory. This will add `rbxcloud` to the project's `aftman.toml` file (or create one if it doesn't yet exist). ```sh -$ aftman add Sleitnick/rbxcloud@0.2.0 +$ aftman add Sleitnick/rbxcloud@0.2.1 ``` Next, run `aftman install` to install `rbxcloud`. @@ -17,7 +17,7 @@ Add `rbxcloud` under the `[tools]` section of your `foreman.toml` file. ```toml # foreman.toml [tools] -rbxcloud = { github = "Sleitnick/rbxcloud", version = "0.2.0" } +rbxcloud = { github = "Sleitnick/rbxcloud", version = "0.2.1" } ``` Next, run `foreman install` to install `rbxcloud`. diff --git a/docs/lib/lib-install.md b/docs/lib/lib-install.md index 91343b1..e5a8540 100644 --- a/docs/lib/lib-install.md +++ b/docs/lib/lib-install.md @@ -5,7 +5,7 @@ To use `rbxcloud` in a Rust project, simply add `rbxcloud` to the `Cargo.toml` dependency list. ```toml [dependencies] -rbxcloud = "0.2.0" +rbxcloud = "0.2.1" ``` Alternatively, use `cargo add`.