Skip to content

Commit c99b5fb

Browse files
committed
release typify 0.5.0
1 parent 4112324 commit c99b5fb

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

CHANGELOG.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313

1414
== Unreleased changes (release date TBD)
1515

16-
https://github.com/oxidecomputer/typify/compare/v0.4.3\...HEAD[Full list of commits]
16+
https://github.com/oxidecomputer/typify/compare/v0.5.0\...HEAD[Full list of commits]
17+
18+
== 0.5.0 (released 2025-10-09)
19+
20+
https://github.com/oxidecomputer/typify/compare/v0.4.3\...v0.5.0[Full list of commits]
1721

1822
* improve heuristics for enum variant naming (#894)
1923

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ members = [
1212
resolver = "2"
1313

1414
[workspace.dependencies]
15-
typify = { version = "0.4.3", path = "typify" }
16-
typify-impl = { version = "0.4.3", path = "typify-impl" }
17-
typify-macro = { version = "0.4.3", path = "typify-macro" }
15+
typify = { version = "0.5.0", path = "typify" }
16+
typify-impl = { version = "0.5.0", path = "typify-impl" }
17+
typify-macro = { version = "0.5.0", path = "typify-macro" }
1818

1919
assert_cmd = "2.0.17"
2020
chrono = { version = "0.4.42", features = ["serde"] }

cargo-typify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-typify"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "cargo command to generate Rust code from a JSON Schema"

typify-impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify-impl"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "typify backend implementation"

typify-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify-macro"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "typify macro implementation"
@@ -19,4 +19,4 @@ serde = "1.0.228"
1919
serde_json = "1.0.145"
2020
serde_tokenstream = "0.2.2"
2121
syn = { version = "2.0", features = ["full", "extra-traits"] }
22-
typify-impl = { version = "0.4.3", path = "../typify-impl" }
22+
typify-impl = { version = "0.5.0", path = "../typify-impl" }

typify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "JSON schema to rust type code generator"

0 commit comments

Comments
 (0)