Skip to content

Commit 8907868

Browse files
chore: update changelogs and bump versions for v1.10.0-beta.5 (#178)
1 parent a03f5ef commit 8907868

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Version 1.10.0-beta
22

3+
## 1.10.0-beta.5
4+
5+
- Added support for Swift generic constraints via `#[typeshare(swiftGenericConstraints)]` [#174](https://github.com/1Password/typeshare/pull/174)
6+
- Added Swift config option for defining constraints on `CodableVoid` generated type [#174](https://github.com/1Password/typeshare/pull/174)
7+
38
## 1.10.0-beta.4
49

510
Fixed a bug involving `#[typeshare(skip)]` on fields in struct variants of enums.
@@ -14,7 +19,7 @@ This release brings support for multiple file generation, allowing splitting gen
1419
files when used in large projects. This can dramatically increase compilation speed of
1520
the generated files and increase maintainability.
1621

17-
This is a *pre-release* version which may have bugs or break compatibility.
22+
This is a _pre-release_ version which may have bugs or break compatibility.
1823

1924
- Multiple file output [#166](https://github.com/1Password/typeshare/pull/166)
2025

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.4"
3+
version = "1.10.0-beta.5"
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.4" }
25+
typeshare-core = { path = "../core", version = "1.10.0-beta.5" }
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.4"
3+
version = "1.10.0-beta.5"
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)