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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.0"
".": "0.8.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.8.0](https://github.com/KrakenNet/stargraph/compare/v0.7.0...v0.8.0) (2026-08-18)


### Features

* **lm:** sglang LM block — preflight the hardware, repair the runtime, serve from a named venv ([#199](https://github.com/KrakenNet/stargraph/issues/199)) ([92eaaf0](https://github.com/KrakenNet/stargraph/commit/92eaaf0477b9bc11fd458dc03e37a91dedbc788c))

## [0.7.0](https://github.com/KrakenNet/stargraph/compare/v0.6.0...v0.7.0) (2026-08-17)


Expand Down
2 changes: 1 addition & 1 deletion docs/reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2559,7 +2559,7 @@
"info": {
"description": "Stargraph serve API (POC slice -- design §5.1 minimal subset). 5 routes: POST /v1/runs, GET /v1/runs/{run_id}, POST /v1/runs/{run_id}/cancel, POST /v1/runs/{run_id}/pause, POST /v1/runs/{run_id}/respond. Remaining endpoints land in Phase 2 (tasks 2.15, 2.17) and the WS route in task 1.26.",
"title": "stargraph",
"version": "0.7.0"
"version": "0.8.0"
},
"openapi": "3.1.0",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "stargraph"
version = "0.7.0"
version = "0.8.0"
description = "Stateful agent-graph framework with deterministic governance: rules route transitions, not the LLM. Auditable, replayable — built on Fathom."
readme = "README.md"
requires-python = ">=3.13"
Expand Down
2 changes: 1 addition & 1 deletion src/stargraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __getattr__(name: str) -> Any:
raise AttributeError(msg)


__version__ = "0.7.0" # x-release-please-version
__version__ = "0.8.0" # x-release-please-version

__all__ = [
"DocStore",
Expand Down
Loading