Skip to content

Commit 4c7eb3a

Browse files
committed
release typify 0.6.0
1 parent 6ad25e0 commit 4c7eb3a

7 files changed

Lines changed: 17 additions & 13 deletions

File tree

CHANGELOG.adoc

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

1414
== Unreleased changes (release date TBD)
1515

16+
https://github.com/oxidecomputer/typify/compare/v0.6.0\...HEAD[Full list of commits]
17+
18+
== 0.6.0 (released 2026-02-03)
19+
1620
* remove non-idiomatic From<&String> trait impls (#946)
1721
* allow custom attributes to be applied to all generated types with `attrs` setting (#949)
1822
* remove non-idiomatic From<&T> for T trait impls (#945)
1923
* use inline format args in generated code (#934)
2024
* properly handle JSON pointer escape sequences (#940)
2125

22-
https://github.com/oxidecomputer/typify/compare/v0.5.0\...HEAD[Full list of commits]
26+
https://github.com/oxidecomputer/typify/compare/v0.5.0\...v0.6.0[Full list of commits]
2327

2428
== 0.5.0 (released 2025-10-09)
2529

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.5.0", path = "typify" }
16-
typify-impl = { version = "0.5.0", path = "typify-impl" }
17-
typify-macro = { version = "0.5.0", path = "typify-macro" }
15+
typify = { version = "0.6.0", path = "typify" }
16+
typify-impl = { version = "0.6.0", path = "typify-impl" }
17+
typify-macro = { version = "0.6.0", path = "typify-macro" }
1818

1919
assert_cmd = "2.1.2"
2020
chrono = { version = "0.4.43", 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.5.0"
3+
version = "0.6.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.5.0"
3+
version = "0.6.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.5.0"
3+
version = "0.6.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.149"
2020
serde_tokenstream = "0.2.2"
2121
syn = { version = "2.0", features = ["full", "extra-traits"] }
22-
typify-impl = { version = "0.5.0", path = "../typify-impl" }
22+
typify-impl = { version = "0.6.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.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "JSON schema to rust type code generator"

0 commit comments

Comments
 (0)