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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions cesr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cesr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
19 changes: 19 additions & 0 deletions keri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
4 changes: 2 additions & 2 deletions keri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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",
Expand Down
Loading