From 7d873ddea04083755bdaf63ad3a89861de6cc28c Mon Sep 17 00:00:00 2001 From: Darrell Roberts <33698065+darrell-roberts@users.noreply.github.com> Date: Fri, 15 Nov 2024 11:28:29 -0500 Subject: [PATCH] chore: update changelogs and bump versions for v1.13.0 (#208) --- CHANGELOG.md | 5 +++++ Cargo.lock | 4 ++-- cli/Cargo.toml | 12 ++++++------ core/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92c6eaab..813ee38f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 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) +- Fix target_os parsing when no --target-os is provided [#204](https://github.com/1Password/typeshare/pull/204) + # Version 1.12.0 - Optional slices in Go no longer trigger a pointer redirection. diff --git a/Cargo.lock b/Cargo.lock index 353d1406..8496d71c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -697,7 +697,7 @@ dependencies = [ [[package]] name = "typeshare-cli" -version = "1.12.0" +version = "1.13.0" dependencies = [ "anyhow", "clap", @@ -714,7 +714,7 @@ dependencies = [ [[package]] name = "typeshare-core" -version = "1.12.0" +version = "1.13.0" dependencies = [ "anyhow", "cool_asserts", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 44c9c9ed..9469c4cb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-cli" -version = "1.12.0" +version = "1.13.0" edition = "2021" description = "Command Line Tool for generating language files with typeshare" license = "MIT OR Apache-2.0" @@ -16,17 +16,17 @@ go = [] [dependencies] clap = { version = "4.5", features = [ - "cargo", - "derive", - "unicode", - "wrap_help", + "cargo", + "derive", + "unicode", + "wrap_help", ] } ignore = "0.4" once_cell = "1" rayon = "1.10" serde = { version = "1", features = ["derive"] } toml = "0.8" -typeshare-core = { path = "../core", version = "=1.12.0" } +typeshare-core = { path = "../core", version = "=1.13.0" } log.workspace = true flexi_logger.workspace = true anyhow = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index aaa38900..726e557b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-core" -version = "1.12.0" +version = "1.13.0" license = "MIT OR Apache-2.0" edition = "2021" description = "The code generator used by Typeshare's command line tool"