Skip to content

Commit a509825

Browse files
chore: update changelogs and bump versions for v1.11.0
1 parent d75929a commit a509825

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# Version 1.11.0
2+
3+
This release promotes 1.10.0-beta.x to stable, and several new features.
4+
5+
## Since 1.10.0-beta.7
6+
7+
- Multiple `--target-os` is now allowed, and `#[cfg(not(target_os...))]` is now parsed: [#187](https://github.com/1Password/typeshare/pull/187)
8+
- Console output is now handled by flexi_logger: #[187](https://github.com/1Password/typeshare/pull/187)
9+
- Variant types are now explicitly formatted in Go: [#189](https://github.com/1Password/typeshare/pull/189)
10+
11+
## Summary of 1.10.0-beta.x
12+
13+
See the full changelog for more details: https://github.com/1Password/typeshare/blob/main/CHANGELOG.md
14+
15+
- Output can now be split into multiple generated files
16+
- Source is now walked in parallel, increasing speed
17+
- Generic type constraints can now be defined for Swift
18+
- Kotlin's Inline value classes are now supported
19+
- You can now specify that a struct should be "redacted"
20+
- The effects are language specific. For Kotlin, `toString` is overridden.
21+
122
# Version 1.10.0-beta
223

324
## 1.10.0-beta.7

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.10.0-beta.7"
3+
version = "1.11.0"
44
edition = "2021"
55
description = "Command Line Tool for generating language files with typeshare"
66
license = "MIT OR Apache-2.0"
@@ -22,7 +22,7 @@ once_cell = "1"
2222
rayon = "1.10"
2323
serde = { version = "1", features = ["derive"] }
2424
toml = "0.8"
25-
typeshare-core = { path = "../core", version = "1.10.0-beta.7" }
25+
typeshare-core = { path = "../core", version = "=1.11.0" }
2626
log.workspace = true
2727
flexi_logger.workspace = true
2828
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.10.0-beta.7"
3+
version = "1.11.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)