Skip to content

Commit

Permalink
chore: update changelogs and bump versions for v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LuminaSapphira committed Sep 3, 2024
1 parent d75929a commit a509825
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
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.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"
Expand All @@ -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"
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.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"
Expand Down

0 comments on commit a509825

Please sign in to comment.