From a5054847d5436921e35230473712d1f32ea989ba Mon Sep 17 00:00:00 2001 From: "devrandom-release-plz[bot]" <298062666+devrandom-release-plz[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 20:18:21 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 4 ++-- cesr/CHANGELOG.md | 11 +++++++++++ cesr/Cargo.toml | 2 +- keri/CHANGELOG.md | 19 +++++++++++++++++++ keri/Cargo.toml | 4 ++-- 5 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 keri/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index ac86ffe..d57220a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,7 +157,7 @@ dependencies = [ [[package]] name = "cesr-rs" -version = "0.4.0" +version = "0.5.0" dependencies = [ "base64", "blake2", @@ -767,7 +767,7 @@ dependencies = [ [[package]] name = "keri-rs" -version = "0.0.1" +version = "0.0.2" dependencies = [ "base64", "cesr-rs", diff --git a/cesr/CHANGELOG.md b/cesr/CHANGELOG.md index 74dddea..c8d77a1 100644 --- a/cesr/CHANGELOG.md +++ b/cesr/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/devrandom-labs/cesr/compare/cesr-rs-v0.4.0...cesr-rs-v0.5.0) - 2026-07-08 + +### Added + +- *(#87)* [**breaking**] K1 KeyState fold + domain model (Authority/Commitment/Establishment) (#136) +- *(#87)* [**breaking**] K1 — KeyState + pure key-state fold (sans-io KERI core) (#134) + +### Other + +- *(#96)* [**breaking**] K0 — convert to workspace + keri-rs sibling crate (#126) + ### Added - Standard derives (`Debug`, `PartialEq`, `Eq`; `Clone` on `Seqner`/`Number`) on diff --git a/cesr/Cargo.toml b/cesr/Cargo.toml index ef46606..2dfedcc 100644 --- a/cesr/Cargo.toml +++ b/cesr/Cargo.toml @@ -4,7 +4,7 @@ # consumers still write `use cesr::...` — only the dependency key differs # (`cesr-rs = { ... }` or `cesr = { package = "cesr-rs", ... }`). name = "cesr-rs" -version = "0.4.0" +version = "0.5.0" edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/keri/CHANGELOG.md b/keri/CHANGELOG.md new file mode 100644 index 0000000..5fa30be --- /dev/null +++ b/keri/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2](https://github.com/devrandom-labs/cesr/compare/keri-rs-v0.0.1...keri-rs-v0.0.2) - 2026-07-08 + +### Added + +- *(#87)* [**breaking**] K1 KeyState fold + domain model (Authority/Commitment/Establishment) (#136) +- *(#87)* [**breaking**] K1 — KeyState + pure key-state fold (sans-io KERI core) (#134) + +### Other + +- *(#96)* [**breaking**] K0 — convert to workspace + keri-rs sibling crate (#126) diff --git a/keri/Cargo.toml b/keri/Cargo.toml index 4800092..9bef5b2 100644 --- a/keri/Cargo.toml +++ b/keri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keri-rs" -version = "0.0.1" +version = "0.0.2" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -22,7 +22,7 @@ alloc = ["cesr/alloc"] [dependencies] # PUBLIC API ONLY. Must NOT enable cesr's `internals` or `test-utils` features # (the only back-doors to non-public items). Enforced by the flake boundary check. -cesr = { package = "cesr-rs", path = "../cesr", version = "0.4", default-features = false, features = [ +cesr = { package = "cesr-rs", path = "../cesr", version = "0.5", default-features = false, features = [ "core", "keri", "crypto",