Skip to content

Commit

Permalink
Bump versions to 1.12.0. Add the changelog entry.
Browse files Browse the repository at this point in the history
Mutable reference passed where mutability not needed
  • Loading branch information
savannidgerinel committed Oct 25, 2024
1 parent 8459548 commit 1da47ea
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 1.12.0

- Optional slices in Go no longer trigger a pointer redirection.
- Upgrade to clap 4. This let us remove the dependency on the now unmaintained atty crate.
- wasmbind is now an optional feature

# Version 1.11.0

This release promotes 1.10.0-beta.x to stable, and several new features.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare-cli"
version = "1.11.0"
version = "1.12.0"
edition = "2021"
description = "Command Line Tool for generating language files with typeshare"
license = "MIT OR Apache-2.0"
Expand All @@ -26,7 +26,7 @@ once_cell = "1"
rayon = "1.10"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
typeshare-core = { path = "../core", version = "=1.11.0" }
typeshare-core = { path = "../core", version = "=1.12.0" }
log.workspace = true
flexi_logger.workspace = true
anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ fn main() -> anyhow::Result<()> {
if let Some(options) = options.subcommand {
match options {
Command::Completions { shell } => {
shell.generate(&mut Args::command(), &mut io::stdout().lock())
shell.generate(&Args::command(), &mut io::stdout().lock())
}
}

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare-core"
version = "1.11.0"
version = "1.12.0"
license = "MIT OR Apache-2.0"
edition = "2021"
description = "The code generator used by Typeshare's command line tool"
Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typeshare"
version = "1.0.3"
version = "1.0.4"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand Down

0 comments on commit 1da47ea

Please sign in to comment.