chore(release): 0.9.0 - #25
Merged
Merged
Conversation
Cuts the two additions merged in #24: `with_credential_status` / `set_credential_status`, and `PartialEq` on `DTGCredentialType`. Both are additive - no API breaks, and nothing changes on the wire for a credential that does not use them - so this is a minor bump rather than the major the last two releases needed. Signed-off-by: Glenn Gore <glenn.g@affinidi.com>
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.
Cuts 0.9.0, releasing the two additions merged in #24.
Changes
Cargo.toml:0.8.0→0.9.0CHANGELOG.md: the[Unreleased]content moves under## [0.9.0] - 2026-09-09,with
[Unreleased]left in place and empty for the next cycleNothing else. No code changes in this PR.
Why minor, not major
Both shipped items are additive —
with_credential_status/set_credential_statusare new methods, and
PartialEq(withEq) onDTGCredentialTypeis a new traitimpl. No signature changed, and nothing changes on the wire for a credential that
does not use them. The last two releases were
feat!majors; this one is not.Contents of 0.9.0
credentialStatuscan be set on a credential being built. Modelled since 0.7.0,but only so an entry already on the wire survived a round trip without changing the
digest; a credential built by a
new_*constructor had no way to acquire one shortof
credential_mut. CONDITIONAL on a VDC rather than required — hence a setter, nota constructor parameter. Nothing here resolves the entry; revocation remains a live
lookup the caller performs.
PartialEqonDTGCredentialType, so consumers can assert by equality ratherthan by pattern.
Tagging
v0.9.0once this merges. The publish workflow is tag-driven and no-ops cleanly ifthe version is already on crates.io (#19).
Note
Trusted Publishing may still be unconfigured on crates.io — as of #19 it was, and
the first real release through the workflow will fail at the auth step until it is
set up. That is the correct failure, and the workflow header says how to fix it.
Verification
cargo test(121 passing),cargo clippy --all-targets,cargo fmt --check, andcargo package --listagainst a clean tree all pass locally.