release: 1.0.0 (fork baseline)#6
Merged
Merged
Conversation
First major release of the barbacane-dev fork. Bumps all four
workspace crates (typify, typify-impl, typify-macro, cargo-typify)
from 0.6.1 → 1.0.0, points their `repository` metadata at this fork,
and updates the internal `typify-impl` pin in typify-macro to match.
CHANGELOG closes out the long-running "Unreleased changes
(barbacane-dev fork)" section as `1.0.0 (released 2026-05-13)` and
opens a fresh empty Unreleased header for future work.
README is rewritten to match the fork's positioning: friendly
attribution to upstream oxidecomputer/typify, git-dep install
instructions, a "What's new vs upstream" feature list, and a
migration note covering the wire-format change around required
fields with intrinsic Rust defaults.
The 1.0.0 bump is warranted: the required-fields-with-intrinsic-
defaults fix changes serialized payloads (`{}` becomes
`{"tags":[]}`), which is a wire-format break for any consumer
asserting on byte-exact output. Documented inline in the migration
section.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First major release of the barbacane-dev fork. Bumps all four workspace crates from `0.6.1` → `1.0.0`, points their `repository` metadata at this fork, and updates the internal `typify-impl` pin in `typify-macro` to match.
The 1.0.0 jump is warranted by the wire-format change around required fields with intrinsic Rust defaults (PR #4) — payloads that previously omitted empty required fields now render them as `[]` / `{}` / `null`. That's a breaking change for any byte-exact downstream consumer.
CHANGELOG
The long-running "Unreleased changes (barbacane-dev fork)" section is closed out as `1.0.0 (released 2026-05-13)`. A fresh empty Unreleased header sits above it for future work.
README
Rewritten to match the fork's positioning:
Next steps after merge
```toml
typify = { git = "https://github.com/barbacane-dev/typify\", tag = "v1.0.0" }
```
Test plan