Skip to content

Commit

Permalink
release typify 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ahl committed Feb 28, 2024
1 parent c6e4947 commit 82a040e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@

== Unreleased changes (release date TBD)

https://github.com/oxidecomputer/typify/compare/v0.0.16\...HEAD[Full list of commits]

== 0.0.16 (released 2024-02-28)

* Introduce a proper Error type for various conversions (#475)
* Add docs to generated mods (#476)
* Various enum improvements

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

== 0.0.15 (released 2023-12-15)

Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cargo-typify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-typify"
version = "0.0.15"
version = "0.0.16"
edition = "2021"
license = "Apache-2.0"
description = "cargo command to generate Rust code from a JSON Schema"
Expand All @@ -12,7 +12,7 @@ categories = ["api-bindings", "compilers"]
default-run = "cargo-typify"

[dependencies]
typify = { version = "0.0.15", path = "../typify" }
typify = { version = "0.0.16", path = "../typify" }

clap = { version = "4.5.1", features = ["derive"] }
color-eyre = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion typify-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typify-impl"
version = "0.0.15"
version = "0.0.16"
edition = "2021"
license = "Apache-2.0"
description = "typify backend implementation"
Expand Down
4 changes: 2 additions & 2 deletions typify-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typify-macro"
version = "0.0.15"
version = "0.0.16"
edition = "2021"
license = "Apache-2.0"
description = "typify macro implementation"
Expand All @@ -18,4 +18,4 @@ serde = "1.0.197"
serde_json = "1.0.114"
serde_tokenstream = "0.2.0"
syn = { version = "2.0", features = ["full", "extra-traits"] }
typify-impl = { version = "0.0.15", path = "../typify-impl" }
typify-impl = { version = "0.0.16", path = "../typify-impl" }
6 changes: 3 additions & 3 deletions typify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typify"
version = "0.0.15"
version = "0.0.16"
edition = "2021"
license = "Apache-2.0"
description = "JSON schema to rust type code generator"
Expand All @@ -14,8 +14,8 @@ default = ["macro"]
macro = ["typify-macro"]

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

[dev-dependencies]
chrono = { version = "0.4.34", features = ["serde"] }
Expand Down

0 comments on commit 82a040e

Please sign in to comment.