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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ mark the stability commitment.
> This repo holds three independently versioned Go modules; entries are tagged
> by module. Untagged entries belong to the core `secmem` module.

## [secmem-crypto/v0.2.0] - 2026-07-19

Dependency-only release. `secmem-crypto` now requires `secmem` v0.2.0, so code
that imports only this module picks up the read-only crash fix below — v0.1.0
of this module pins `secmem` v0.1.0 and would otherwise keep resolving the
faulting core.

No `secmem-crypto` source change: the only additions since
`secmem-crypto/v0.1.0` are the `FuzzSignerLifecycle` state-machine fuzzer and
its seed corpus, both test-only. It is a **minor** bump rather than a patch
because this module's exported API hands back `*secmem.SecureBuffer` values,
so raising its `secmem` floor to v0.2.0 raises the minimum for every consumer
too — a dependency-graph change they should opt into deliberately
(`gorelease` classifies it the same way).

## [0.2.0] - 2026-07-19

A bug-fix release for the core `secmem` module, and the reason to upgrade
Expand Down Expand Up @@ -216,6 +231,7 @@ First tagged release of the core `secmem` module.

[Unreleased]: https://github.com/deadpoets/secmem/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/deadpoets/secmem/compare/v0.1.0...v0.2.0
[secmem-crypto/v0.2.0]: https://github.com/deadpoets/secmem/releases/tag/secmem-crypto%2Fv0.2.0
[secmem-lint/v0.1.0]: https://github.com/deadpoets/secmem/releases/tag/secmem-lint%2Fv0.1.0
[secmem-crypto/v0.1.0]: https://github.com/deadpoets/secmem/releases/tag/secmem-crypto%2Fv0.1.0
[0.1.0]: https://github.com/deadpoets/secmem/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/deadpoets/secmem/examples
go 1.26

require (
github.com/deadpoets/secmem v0.1.0
github.com/deadpoets/secmem v0.2.0
github.com/deadpoets/secmem/secmem-crypto v0.1.0
golang.org/x/crypto v0.54.0
)
Expand Down
2 changes: 1 addition & 1 deletion secmem-crypto/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.26

require (
filippo.io/edwards25519 v1.2.0
github.com/deadpoets/secmem v0.1.0
github.com/deadpoets/secmem v0.2.0
golang.org/x/crypto v0.54.0
)

Expand Down
4 changes: 2 additions & 2 deletions secmem-crypto/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
filippo.io/edwards25519 v1.2.0 h1:crnVqOiS4jqYleHd9vaKZ+HKtHfllngJIiOpNpoJsjo=
filippo.io/edwards25519 v1.2.0/go.mod h1:xzAOLCNug/yB62zG1bQ8uziwrIqIuxhctzJT18Q77mc=
github.com/deadpoets/secmem v0.1.0 h1:Nzf/SJLM9fYL4ZUrH5WQspmtwH6BX8Vh2vpd7qS1YNk=
github.com/deadpoets/secmem v0.1.0/go.mod h1:E3WiQ0gBANyIV5SiXQ4oRrasbv5aZ5zC3gYwbyf+DcQ=
github.com/deadpoets/secmem v0.2.0 h1:4+TnqmcluZhDyDRZhH7z2o9vvvg0VmxmmdxEjf9d7rA=
github.com/deadpoets/secmem v0.2.0/go.mod h1:E3WiQ0gBANyIV5SiXQ4oRrasbv5aZ5zC3gYwbyf+DcQ=
golang.org/x/crypto v0.54.0 h1:YLIA59K4fiNzHzjnZt2tUJQjQtUWfWbeHBqKtk3eScw=
golang.org/x/crypto v0.54.0/go.mod h1:KWL8ny2AZdGR2cWmzeHrp2azQPGogOv+HeQaVEXC2dk=
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
Expand Down
Loading