Skip to content
Open
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.

12 changes: 12 additions & 0 deletions cesr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/devrandom-labs/cesr/compare/cesr-rs-v0.5.0...cesr-rs-v0.6.0) - 2026-07-11

### Added

- *(serder)* [**breaking**] #142 strict canonical read-path parser — offset-based SAID verification ([#146](https://github.com/devrandom-labs/cesr/pull/146))
- *(serder)* #79 pluggable serialization backend — seam + DirectJson zero-copy writer ([#141](https://github.com/devrandom-labs/cesr/pull/141))

### Fixed

- *(serder)* [**breaking**] #147 ample(3) — port keripy's exact f1/f2 threshold formula ([#152](https://github.com/devrandom-labs/cesr/pull/152))
- *(serder)* [**breaking**] guard version-string fixed widths and validate at every deserialize entry ([#139](https://github.com/devrandom-labs/cesr/pull/139))

### Fixed (breaking)

- **`serder::ample`** now matches keripy's `ample()` exactly (`eventing.py`,
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.5.0"
version = "0.6.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions keri/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.3](https://github.com/devrandom-labs/cesr/compare/keri-rs-v0.0.2...keri-rs-v0.0.3) - 2026-07-11

### Other

- updated the following local packages: cesr-rs

## [0.0.2](https://github.com/devrandom-labs/cesr/compare/keri-rs-v0.0.1...keri-rs-v0.0.2) - 2026-07-08

### Added
Expand Down
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.2"
version = "0.0.3"
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.5", default-features = false, features = [
cesr = { package = "cesr-rs", path = "../cesr", version = "0.6", default-features = false, features = [
"core",
"keri",
"crypto",
Expand Down
Loading