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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "panopticon-app"
version = "0.0.4"
version = "0.0.5"
description = "Self-hosted control plane for running a fleet of coding agents in isolated containers, governed by configurable workflows."
requires-python = ">=3.11"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/panopticon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""panopticon — keep an eye on your agents."""

__version__ = "0.0.3"
__version__ = "0.0.5"
2 changes: 1 addition & 1 deletion src/panopticon/taskservice/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ async def lifespan(_app: FastAPI) -> AsyncIterator[None]:
async with mcp.session_manager.run():
yield

app = FastAPI(title="panopticon task service", version="0.0.3", lifespan=lifespan)
app = FastAPI(title="panopticon task service", version="0.0.5", lifespan=lifespan)

# The block-until-change feed: a store mutation bumps the version + wakes parked GET /tasks
# long-polls (the seam the daemons/dashboard migrate onto, replacing their interval re-polls).
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

Loading