Skip to content

Commit 4a73bd4

Browse files
Cerulan LuminaCerulan Lumina
authored andcommitted
chore: update changelog and bump version numbers for release v1.10.0-beta.7
1 parent 1316485 commit 4a73bd4

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Version 1.10.0-beta
22

3+
## 1.10.0-beta.7
4+
5+
- Added support for [inline value classes](https://kotlinlang.org/docs/inline-classes.html) in Kotlin - [#182](https://github.com/1Password/typeshare/pull/182)
6+
- Added the ability to specify that a struct should have information redacted - [#170](https://github.com/1Password/typeshare/pull/170)
7+
- What this means is language-specific. In Kotlin, the toString method is overridden
8+
- This was actually added in 1.10.0-beta.4 but went unannounced.
9+
- Made the output deterministic (this broke in 1.10.0-beta.6) - [#185](https://github.com/1Password/typeshare/pull/185)
10+
- Algebraic Enum Variant names are now capitalized appropriately - [#183](https://github.com/1Password/typeshare/pull/183)
11+
312
## 1.10.0-beta.6
413

514
- Added support for skipping fields/variants via the `target_os` argument [#176](https://github.com/1Password/typeshare/pull/176)

Cargo.lock

Lines changed: 2 additions & 2 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.10.0-beta.6"
3+
version = "1.10.0-beta.7"
44
edition = "2021"
55
description = "Command Line Tool for generating language files with typeshare"
66
license = "MIT OR Apache-2.0"
@@ -22,5 +22,5 @@ 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.6" }
25+
typeshare-core = { path = "../core", version = "1.10.0-beta.7" }
2626
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.6"
3+
version = "1.10.0-beta.7"
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)