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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ surface is governed by [`COMPATIBILITY.md`](COMPATIBILITY.md).

## [Unreleased]

## [0.6.0] - 2026-06-13

Governance and compliance. Approvals can route to **Slack**, policy is now
**code** — reusable bundles via `POST /v1/policies` or a reviewed `riskkernel.yaml`,
with a dry-run against recorded runs — and a new **compliance evidence export** maps
RiskKernel's recorded controls to OWASP / EU AI Act references with a tamper-evident
event log. Plus the published enforcement-overhead number (~150 ns, zero allocations)
and a public roadmap. No breaking API changes; forward-compatible with v0.5.x state.

### Added
- **Published enforcement overhead + a public roadmap.** The deterministic
enforcement decision is measured at ~150 ns and **zero heap allocations** per
Expand Down Expand Up @@ -332,7 +341,8 @@ and a memory you own, in one self-hosted binary. Three integration surfaces
(keyless) on each `v*` tag; GoReleaser binaries + checksums + GitHub release;
`govulncheck` + CodeQL in CI. One-line `docker run` quickstart.

[Unreleased]: https://github.com/prashar32/riskkernel/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/prashar32/riskkernel/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/prashar32/riskkernel/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/prashar32/riskkernel/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/prashar32/riskkernel/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/prashar32/riskkernel/compare/v0.2.0...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion docs/VISION.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ orchestration inside the runtime, and a required heavyweight datastore.

## Status & roadmap

v0.5.0 (released). The runtime is the entire current focus. See
v0.6.0 (released). The runtime is the entire current focus. See
[`CHANGELOG.md`](../CHANGELOG.md) for what has landed and the public contract in
[`api/v1/`](../api/v1) for the stable surface SDKs build on.

Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package version
// These are set via -ldflags "-X github.com/prashar32/riskkernel/internal/version.Version=..."
var (
// Version is the semantic version of this build.
Version = "0.5.1-dev"
Version = "0.6.1-dev"
// Commit is the git commit this binary was built from.
Commit = "unknown"
// Date is the build date (RFC3339), stamped at release.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "riskkernel"
version = "0.5.0"
version = "0.6.0"
description = "Thin Python client for the RiskKernel reliability runtime (Surface 2)."
readme = "README.md"
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/riskkernel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
governed_run,
)

__version__ = "0.5.0"
__version__ = "0.6.0"

__all__ = [
"RiskKernel",
Expand Down
4 changes: 2 additions & 2 deletions sdks/typescript/package-lock.json

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

2 changes: 1 addition & 1 deletion sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@riskkernel/sdk",
"version": "0.5.0",
"version": "0.6.0",
"description": "Thin TypeScript client for the RiskKernel reliability runtime (Surface 2).",
"license": "Apache-2.0",
"author": "Adarsh Prashar",
Expand Down