Skip to content

Commit 82a040e

Browse files
committed
release typify 0.0.16
1 parent c6e4947 commit 82a040e

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

CHANGELOG.adoc

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@
1313

1414
== Unreleased changes (release date TBD)
1515

16+
https://github.com/oxidecomputer/typify/compare/v0.0.16\...HEAD[Full list of commits]
17+
18+
== 0.0.16 (released 2024-02-28)
19+
1620
* Introduce a proper Error type for various conversions (#475)
1721
* Add docs to generated mods (#476)
1822
* Various enum improvements
1923

20-
https://github.com/oxidecomputer/typify/compare/v0.0.15\...HEAD[Full list of commits]
24+
https://github.com/oxidecomputer/typify/compare/v0.0.15\...v0.0.16[Full list of commits]
2125

2226
== 0.0.15 (released 2023-12-15)
2327

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-typify/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-typify"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "cargo command to generate Rust code from a JSON Schema"
@@ -12,7 +12,7 @@ categories = ["api-bindings", "compilers"]
1212
default-run = "cargo-typify"
1313

1414
[dependencies]
15-
typify = { version = "0.0.15", path = "../typify" }
15+
typify = { version = "0.0.16", path = "../typify" }
1616

1717
clap = { version = "4.5.1", features = ["derive"] }
1818
color-eyre = "0.6"

typify-impl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify-impl"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "typify backend implementation"

typify-macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify-macro"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "typify macro implementation"
@@ -18,4 +18,4 @@ serde = "1.0.197"
1818
serde_json = "1.0.114"
1919
serde_tokenstream = "0.2.0"
2020
syn = { version = "2.0", features = ["full", "extra-traits"] }
21-
typify-impl = { version = "0.0.15", path = "../typify-impl" }
21+
typify-impl = { version = "0.0.16", path = "../typify-impl" }

typify/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typify"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "JSON schema to rust type code generator"
@@ -14,8 +14,8 @@ default = ["macro"]
1414
macro = ["typify-macro"]
1515

1616
[dependencies]
17-
typify-macro = { version = "0.0.15", path = "../typify-macro", optional = true }
18-
typify-impl = { version = "0.0.15", path = "../typify-impl" }
17+
typify-macro = { version = "0.0.16", path = "../typify-macro", optional = true }
18+
typify-impl = { version = "0.0.16", path = "../typify-impl" }
1919

2020
[dev-dependencies]
2121
chrono = { version = "0.4.34", features = ["serde"] }

0 commit comments

Comments
 (0)