Skip to content

Commit da98c89

Browse files
Merge pull request 1Password#203 from 1Password/savanni/1.12.0
Upgrade versions and changelog for 1.12.0
2 parents 8459548 + 1da47ea commit da98c89

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 1.12.0
2+
3+
- Optional slices in Go no longer trigger a pointer redirection.
4+
- Upgrade to clap 4. This let us remove the dependency on the now unmaintained atty crate.
5+
- wasmbind is now an optional feature
6+
17
# Version 1.11.0
28

39
This release promotes 1.10.0-beta.x to stable, and several new features.

Cargo.lock

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

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typeshare-cli"
3-
version = "1.11.0"
3+
version = "1.12.0"
44
edition = "2021"
55
description = "Command Line Tool for generating language files with typeshare"
66
license = "MIT OR Apache-2.0"
@@ -26,7 +26,7 @@ once_cell = "1"
2626
rayon = "1.10"
2727
serde = { version = "1", features = ["derive"] }
2828
toml = "0.8"
29-
typeshare-core = { path = "../core", version = "=1.11.0" }
29+
typeshare-core = { path = "../core", version = "=1.12.0" }
3030
log.workspace = true
3131
flexi_logger.workspace = true
3232
anyhow = "1"

cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fn main() -> anyhow::Result<()> {
4747
if let Some(options) = options.subcommand {
4848
match options {
4949
Command::Completions { shell } => {
50-
shell.generate(&mut Args::command(), &mut io::stdout().lock())
50+
shell.generate(&Args::command(), &mut io::stdout().lock())
5151
}
5252
}
5353

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.11.0"
3+
version = "1.12.0"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
66
description = "The code generator used by Typeshare's command line tool"

lib/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"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"

0 commit comments

Comments
 (0)