Skip to content

Commit

Permalink
release typify 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ahl committed Sep 26, 2024
1 parent a2353a2 commit 50d9696
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,7 +13,11 @@

== Unreleased changes (release date TBD)

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

== 0.2.0 (released 2024-09-26)

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

* Migrate from `ToString` to `std::fmt::Display` (#663)
* fully qualify types and traits (#647)
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.1.0"
version = "0.2.0"
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.1.0", path = "../typify" }
typify = { version = "0.2.0", path = "../typify" }

clap = { version = "4.5.18", 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.1.0"
version = "0.2.0"
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.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
description = "typify macro implementation"
Expand All @@ -19,4 +19,4 @@ serde = "1.0.210"
serde_json = "1.0.128"
serde_tokenstream = "0.2.2"
syn = { version = "2.0", features = ["full", "extra-traits"] }
typify-impl = { version = "0.1.0", path = "../typify-impl" }
typify-impl = { version = "0.2.0", 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.1.0"
version = "0.2.0"
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.1.0", path = "../typify-macro", optional = true }
typify-impl = { version = "0.1.0", path = "../typify-impl" }
typify-macro = { version = "0.2.0", path = "../typify-macro", optional = true }
typify-impl = { version = "0.2.0", path = "../typify-impl" }

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

0 comments on commit 50d9696

Please sign in to comment.