diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c2f0299..4538f177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# Version 1.11.0 + +This release promotes 1.10.0-beta.x to stable, and several new features. + +## Since 1.10.0-beta.7 + +- Multiple `--target-os` is now allowed, and `#[cfg(not(target_os...))]` is now parsed: [#187](https://github.com/1Password/typeshare/pull/187) +- Console output is now handled by flexi_logger: #[187](https://github.com/1Password/typeshare/pull/187) +- Variant types are now explicitly formatted in Go: [#189](https://github.com/1Password/typeshare/pull/189) + +## Summary of 1.10.0-beta.x + +See the full changelog for more details: https://github.com/1Password/typeshare/blob/main/CHANGELOG.md + +- Output can now be split into multiple generated files +- Source is now walked in parallel, increasing speed +- Generic type constraints can now be defined for Swift +- Kotlin's Inline value classes are now supported +- You can now specify that a struct should be "redacted" + - The effects are language specific. For Kotlin, `toString` is overridden. + # Version 1.10.0-beta ## 1.10.0-beta.7 diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e9cc62e9..44f95a0d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-cli" -version = "1.10.0-beta.7" +version = "1.11.0" edition = "2021" description = "Command Line Tool for generating language files with typeshare" license = "MIT OR Apache-2.0" @@ -22,7 +22,7 @@ once_cell = "1" rayon = "1.10" serde = { version = "1", features = ["derive"] } toml = "0.8" -typeshare-core = { path = "../core", version = "1.10.0-beta.7" } +typeshare-core = { path = "../core", version = "=1.11.0" } log.workspace = true flexi_logger.workspace = true anyhow = "1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 84ec0b0b..6cf2bc9a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typeshare-core" -version = "1.10.0-beta.7" +version = "1.11.0" license = "MIT OR Apache-2.0" edition = "2021" description = "The code generator used by Typeshare's command line tool"