Skip to content

Commit fe83e91

Browse files
chriswaynehclaude
andcommitted
Align RedDock application version with v0.2.0
The API and UI still reported 0.1.0 after the Phase 1 release was tagged. Bump Settings.version, update the backend assertion and the frontend version stub, and re-capture both screenshots so the header matches the release. No other behaviour changes. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 84b5801 commit fe83e91

5 files changed

Lines changed: 3 additions & 3 deletions

File tree

backend/app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Settings(BaseModel):
99
"""Runtime settings kept intentionally small for the local foundation."""
1010

1111
app_name: str = "RedDock"
12-
version: str = "0.1.0"
12+
version: str = "0.2.0"
1313
phase: str = "Phase 1 — Discovery"
1414
database_url: str = "sqlite:///./data/reddock.db"
1515
evidence_dir: str = "./data/evidence"

backend/tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_version_endpoint(client):
88
response = client.get("/api/version")
99
assert response.status_code == 200
1010
assert response.json()["name"] == "RedDock"
11-
assert response.json()["version"] == "0.1.0"
11+
assert response.json()["version"] == "0.2.0"
1212

1313

1414
def test_create_list_and_retrieve_dockyard(client):

docs/screenshots/dashboard.png

-3.52 KB
Loading

docs/screenshots/workspace.png

134 Bytes
Loading

frontend/src/App.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function stubApi({ scope = [scopeEntry], assets = [], evaluation = allowed }: Op
8282

8383
if (url.endsWith("/health")) return json({ status: "healthy", service: "reddock-core" });
8484
if (url.endsWith("/version"))
85-
return json({ name: "RedDock", version: "0.1.0", phase: "Phase 1 — Discovery" });
85+
return json({ name: "RedDock", version: "0.2.0", phase: "Phase 1 — Discovery" });
8686
if (url.endsWith("/adapters")) return json(adapters);
8787
if (url.endsWith("/scope/evaluate")) return json(evaluation);
8888
if (url.endsWith("/scope")) return json(scope);

0 commit comments

Comments
 (0)