Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

== Unreleased changes (barbacane-dev fork)

https://github.com/barbacane-dev/typify/compare/v1.0.0\...HEAD[Full list of commits]

== 1.0.0 (released 2026-05-13)

First major release of the barbacane-dev fork. Aggregates every fix and feature carried since the 0.6.1 upstream baseline. Bumped to 1.0.0 to signal that this fork is now an independent line of development with at least one wire-format breaking change.

=== Bug fixes
* fix untagged enum variant ordering: Integer now comes before Number to prevent unreachable deserialization (#991)
* generate `Default` impl for structs where all required fields have explicit defaults (#918)
Expand Down Expand Up @@ -42,7 +48,7 @@
* `cargo typify` CLI: new `--schema-dir` flag to specify external schema directory
* `cargo typify` CLI: automatic 2020-12 normalization (no flags needed)

https://github.com/barbacane-dev/typify/compare/v0.6.1\...HEAD[Full list of commits]
https://github.com/barbacane-dev/typify/compare/v0.6.1\...v1.0.0[Full list of commits]

== 0.6.1 (released 2026-02-10)

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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ members = [
resolver = "2"

[workspace.dependencies]
typify = { version = "0.6.1", path = "typify" }
typify-impl = { version = "0.6.1", path = "typify-impl" }
typify-macro = { version = "0.6.1", path = "typify-macro" }
typify = { version = "1.0.0", path = "typify" }
typify-impl = { version = "1.0.0", path = "typify-impl" }
typify-macro = { version = "1.0.0", path = "typify-macro" }

assert_cmd = "2.2.0"
chrono = { version = "0.4.44", features = ["serde"] }
Expand Down
Loading
Loading