From c0b160d97d2b1ab7a29f503c7a968f39a6d37331 Mon Sep 17 00:00:00 2001 From: Adarsh Prashar Date: Sun, 31 May 2026 19:52:20 +0530 Subject: [PATCH] release: v0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Roll [Unreleased] into [0.1.1] and bump the version markers (CLAUDE.md §13): - CHANGELOG: dated [0.1.1] section (examples demo + SDK empty-wheel fix #32); fresh empty [Unreleased]; compare links updated. - docs/VISION.md: status line → v0.1.1 (released). - internal/version/version.go: default → 0.1.2-dev (releases stamp the real version via -ldflags; this only shows on un-stamped local builds). - sdks/python: pyproject + __init__ __version__ → 0.1.1. --- CHANGELOG.md | 9 ++++++++- docs/VISION.md | 2 +- internal/version/version.go | 2 +- sdks/python/pyproject.toml | 2 +- sdks/python/riskkernel/__init__.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2373ce2..3d4f3c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ surface is governed by [`COMPATIBILITY.md`](COMPATIBILITY.md). ## [Unreleased] +## [0.1.1] - 2026-05-31 + +A fast follow-up to v0.1.0: makes the Python SDK installable from a build, and +ships a runnable demo of the headline feature (deterministic budget/loop governance +killing a runaway agent). + ### Added - **`examples/codebase-qa`** — a runnable demo agent (Python SDK + proxy) that showcases the headline feature: a real ReAct loop over a codebase that the @@ -112,5 +118,6 @@ 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.1.0...HEAD +[Unreleased]: https://github.com/prashar32/riskkernel/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/prashar32/riskkernel/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/prashar32/riskkernel/releases/tag/v0.1.0 diff --git a/docs/VISION.md b/docs/VISION.md index a8a68b6..e65800f 100644 --- a/docs/VISION.md +++ b/docs/VISION.md @@ -71,7 +71,7 @@ orchestration inside the runtime, and a required heavyweight datastore. ## Status & roadmap -Pre-v0.1, under active construction. The runtime is the entire current focus. See +v0.1.1 (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. diff --git a/internal/version/version.go b/internal/version/version.go index 4f92b3f..055af58 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -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.1.0-dev" + Version = "0.1.2-dev" // Commit is the git commit this binary was built from. Commit = "unknown" // Date is the build date (RFC3339), stamped at release. diff --git a/sdks/python/pyproject.toml b/sdks/python/pyproject.toml index dc306d7..46d5d1a 100644 --- a/sdks/python/pyproject.toml +++ b/sdks/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "riskkernel" -version = "0.1.0.dev0" +version = "0.1.1" description = "Thin Python client for the RiskKernel reliability runtime (Surface 2)." readme = "README.md" requires-python = ">=3.9" diff --git a/sdks/python/riskkernel/__init__.py b/sdks/python/riskkernel/__init__.py index 6fad48f..98b189c 100644 --- a/sdks/python/riskkernel/__init__.py +++ b/sdks/python/riskkernel/__init__.py @@ -37,7 +37,7 @@ governed_run, ) -__version__ = "0.1.0.dev0" +__version__ = "0.1.1" __all__ = [ "RiskKernel",