diff --git a/Cargo.lock b/Cargo.lock index ba5a621..ce2f8e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1208,7 +1208,7 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" [[package]] name = "mantle" -version = "0.11.1" +version = "0.11.2" dependencies = [ "clap", "env_logger", @@ -1984,7 +1984,7 @@ dependencies = [ [[package]] name = "rbx_mantle" -version = "0.11.1" +version = "0.11.2" dependencies = [ "async-trait", "base64", diff --git a/README.md b/README.md index 651c4f4..126d5b4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It is recommended to install with Foreman, with the following config: # foreman.toml [tools] -mantle = { source = "blake-mealey/mantle", version = "0.11.1" } +mantle = { source = "blake-mealey/mantle", version = "0.11.2" } ``` You can learn more about Foreman including how to install it from [its diff --git a/bump-version.ps1 b/bump-version.ps1 index 4ebc163..3fda147 100644 --- a/bump-version.ps1 +++ b/bump-version.ps1 @@ -73,7 +73,7 @@ function Invoke-BumpVersion() { # Bump the crate's patch version cargo bump $VersionPart.ToLower() > $null 2> $null if ($LastExitCode -ne 0) { - Write-Error "Failed to install 'cargo-bump' tool." + Write-Error "Failed to bump package version number." Undo-Changes return } diff --git a/mantle/Cargo.toml b/mantle/Cargo.toml index f775483..be9dc08 100644 --- a/mantle/Cargo.toml +++ b/mantle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mantle" -version = "0.11.1" +version = "0.11.2" edition = "2021" [dependencies] diff --git a/rbx_mantle/Cargo.toml b/rbx_mantle/Cargo.toml index a58c506..49e9ec0 100644 --- a/rbx_mantle/Cargo.toml +++ b/rbx_mantle/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rbx_mantle" description = "Infra-as-code for Roblox" -version = "0.11.1" +version = "0.11.2" homepage = "https://mantle-docs.vercel.app" repository = "https://github.com/blake-mealey/mantle" authors = ["Blake Mealey "]