diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dea39db..d9abb5b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# Version 1.13.2 +- Fix binary name in --help --version so typeshare is the name and not typeshare-cli: [#214](https://github.com/1Password/typeshare/pull/214) + # Version 1.13.1 - Fix duplicate root added to walker: [#209](https://github.com/1Password/typeshare/pull/209) - Only assert if go package is present if generating go types: [#211](https://github.com/1Password/typeshare/pull/211) diff --git a/Cargo.lock b/Cargo.lock index 96294891..67b94c3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -697,7 +697,7 @@ dependencies = [ [[package]] name = "typeshare-cli" -version = "1.13.1" +version = "1.13.2" dependencies = [ "anyhow", "clap", @@ -714,7 +714,7 @@ dependencies = [ [[package]] name = "typeshare-core" -version = "1.13.1" +version = "1.13.2" dependencies = [ "anyhow", "cool_asserts", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 55da2183..bfcb576c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-cli" -version = "1.13.1" +version = "1.13.2" edition = "2021" description = "Command Line Tool for generating language files with typeshare" license = "MIT OR Apache-2.0" @@ -26,7 +26,7 @@ once_cell = "1" rayon = "1.10" serde = { version = "1", features = ["derive"] } toml = "0.8" -typeshare-core = { path = "../core", version = "=1.13.1" } +typeshare-core = { path = "../core", version = "=1.13.2" } log.workspace = true flexi_logger.workspace = true anyhow = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5ffbe22f..03fea120 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-core" -version = "1.13.1" +version = "1.13.2" license = "MIT OR Apache-2.0" edition = "2021" description = "The code generator used by Typeshare's command line tool"