diff --git a/CHANGELOG.md b/CHANGELOG.md index 813ee38f..2dea39db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 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) +- Update shell completions for new generate function: [#212](https://github.com/1Password/typeshare/pull/212) + # Version 1.13.0 - Update how logging is initialized: [#206](https://github.com/1Password/typeshare/pull/206) - Don't recreate `Codable.swift` when the contents have not changed [#205](https://github.com/1Password/typeshare/pull/205) diff --git a/Cargo.lock b/Cargo.lock index 8496d71c..96294891 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -697,7 +697,7 @@ dependencies = [ [[package]] name = "typeshare-cli" -version = "1.13.0" +version = "1.13.1" dependencies = [ "anyhow", "clap", @@ -714,7 +714,7 @@ dependencies = [ [[package]] name = "typeshare-core" -version = "1.13.0" +version = "1.13.1" dependencies = [ "anyhow", "cool_asserts", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9469c4cb..55da2183 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-cli" -version = "1.13.0" +version = "1.13.1" 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.0" } +typeshare-core = { path = "../core", version = "=1.13.1" } log.workspace = true flexi_logger.workspace = true anyhow = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 726e557b..5ffbe22f 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-core" -version = "1.13.0" +version = "1.13.1" license = "MIT OR Apache-2.0" edition = "2021" description = "The code generator used by Typeshare's command line tool"