Skip to content

Commit 7d873dd

Browse files
chore: update changelogs and bump versions for v1.13.0 (1Password#208)
1 parent dce5b85 commit 7d873dd

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 1.13.0
2+
- Update how logging is initialized: [#206](https://github.com/1Password/typeshare/pull/206)
3+
- Don't recreate `Codable.swift` when the contents have not changed [#205](https://github.com/1Password/typeshare/pull/205)
4+
- Fix target_os parsing when no --target-os is provided [#204](https://github.com/1Password/typeshare/pull/204)
5+
16
# Version 1.12.0
27

38
- Optional slices in Go no longer trigger a pointer redirection.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typeshare-cli"
3-
version = "1.12.0"
3+
version = "1.13.0"
44
edition = "2021"
55
description = "Command Line Tool for generating language files with typeshare"
66
license = "MIT OR Apache-2.0"
@@ -16,17 +16,17 @@ go = []
1616

1717
[dependencies]
1818
clap = { version = "4.5", features = [
19-
"cargo",
20-
"derive",
21-
"unicode",
22-
"wrap_help",
19+
"cargo",
20+
"derive",
21+
"unicode",
22+
"wrap_help",
2323
] }
2424
ignore = "0.4"
2525
once_cell = "1"
2626
rayon = "1.10"
2727
serde = { version = "1", features = ["derive"] }
2828
toml = "0.8"
29-
typeshare-core = { path = "../core", version = "=1.12.0" }
29+
typeshare-core = { path = "../core", version = "=1.13.0" }
3030
log.workspace = true
3131
flexi_logger.workspace = true
3232
anyhow = "1"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typeshare-core"
3-
version = "1.12.0"
3+
version = "1.13.0"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66
description = "The code generator used by Typeshare's command line tool"

0 commit comments

Comments
 (0)