workstate-bootstrap 0.7.0__tar.gz → 0.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/CHANGELOG.md +13 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/PKG-INFO +2 -2
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/pyproject.toml +2 -2
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/install.py +1 -1
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_bootstrap_install_rehearsal.py +1 -1
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install.py +1 -1
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/.gitignore +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/README.md +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/__init__.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/__main__.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/cli.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/mcp_sync.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/subcommands.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/__init__.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_cli_profile.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_doctor_repair_sync.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_ensure_hooks_path_make.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install_manifest_walker.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install_profile_all_lifecycle.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install_profiles.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_manifest_build.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_mcp_sync_cli.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_mcp_sync_e2e.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_mcp_sync_malformed.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_mcp_sync_prune.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_mcp_sync_unit.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_package_metadata.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_package_source.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_render_seam.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_root_visible_task_plans.py +0 -0
- {workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_subcommands.py +0 -0
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## [0.7.1] — 2026-06-02
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Default managed orchestrator pin realigned to
|
|
10
|
+
`mcp-workstate-orchestrator@0.5.1`.** The 0.7.0 coordinated release
|
|
11
|
+
published orchestrator 0.5.1 but left `DEFAULT_MCP_SERVERS` pinned at
|
|
12
|
+
`@0.5.0`, so package-source / default-server installs launched the
|
|
13
|
+
superseded 0.5.0 wheel via `uvx`. The pin (and its two drift-guard test
|
|
14
|
+
assertions) now track 0.5.1; `mcp-workstate-handoff` stays at `@0.12.0`.
|
|
15
|
+
git_overlay installs were unaffected (they run from the cloned source).
|
|
16
|
+
|
|
17
|
+
|
|
5
18
|
## [0.7.0] — 2026-06-01
|
|
6
19
|
|
|
7
20
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workstate-bootstrap
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
4
4
|
Summary: Bootstrap CLI that hoists the shared workstate-system surface into consumer repos.
|
|
5
5
|
Project-URL: Homepage, https://github.com/darce/workstate
|
|
6
6
|
Project-URL: Source, https://github.com/darce/workstate/tree/main/packages/workstate-bootstrap
|
|
@@ -12,7 +12,7 @@ Requires-Python: >=3.11
|
|
|
12
12
|
Requires-Dist: pyyaml>=6
|
|
13
13
|
Requires-Dist: tomlkit>=0.13
|
|
14
14
|
Requires-Dist: workstate-protocol<0.2.0,>=0.1.7
|
|
15
|
-
Requires-Dist: workstate-system<0.2.0,>=0.1.
|
|
15
|
+
Requires-Dist: workstate-system<0.2.0,>=0.1.1
|
|
16
16
|
Provides-Extra: dev
|
|
17
17
|
Requires-Dist: mcp-workstate-handoff; (python_version >= '3.12') and extra == 'dev'
|
|
18
18
|
Requires-Dist: pytest>=8; extra == 'dev'
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "workstate-bootstrap"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.1"
|
|
8
8
|
description = "Bootstrap CLI that hoists the shared workstate-system surface into consumer repos."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -14,7 +14,7 @@ dependencies = [
|
|
|
14
14
|
"tomlkit>=0.13",
|
|
15
15
|
"pyyaml>=6",
|
|
16
16
|
"workstate-protocol>=0.1.7,<0.2.0",
|
|
17
|
-
"workstate-system>=0.1.
|
|
17
|
+
"workstate-system>=0.1.1,<0.2.0",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
[project.scripts]
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_bootstrap_install_rehearsal.py
RENAMED
|
@@ -237,7 +237,7 @@ def test_install_with_default_servers_requires_uvx_in_args() -> None:
|
|
|
237
237
|
assert "--workspace-root" in entry["args"], (name, entry)
|
|
238
238
|
assert entry["args"][-1] == "serve-stdio", (name, entry)
|
|
239
239
|
assert DEFAULT_MCP_SERVERS["workstate-handoff-mcp"]["args"][0] == "mcp-workstate-handoff@0.12.0"
|
|
240
|
-
assert DEFAULT_MCP_SERVERS["workstate-orchestrator-mcp"]["args"][0] == "mcp-workstate-orchestrator@0.5.
|
|
240
|
+
assert DEFAULT_MCP_SERVERS["workstate-orchestrator-mcp"]["args"][0] == "mcp-workstate-orchestrator@0.5.1"
|
|
241
241
|
|
|
242
242
|
|
|
243
243
|
def test_rehearsal_hoists_plan_targets_makefile_and_shell_wrapper(
|
|
@@ -2147,7 +2147,7 @@ def test_install_with_default_sentinel_uses_built_in_server_map(
|
|
|
2147
2147
|
assert "--workspace-root" in entry["args"]
|
|
2148
2148
|
assert entry["args"][-1] == "serve-stdio"
|
|
2149
2149
|
assert mcp_doc["mcpServers"]["workstate-handoff-mcp"]["args"][0] == "mcp-workstate-handoff@0.12.0"
|
|
2150
|
-
assert mcp_doc["mcpServers"]["workstate-orchestrator-mcp"]["args"][0] == "mcp-workstate-orchestrator@0.5.
|
|
2150
|
+
assert mcp_doc["mcpServers"]["workstate-orchestrator-mcp"]["args"][0] == "mcp-workstate-orchestrator@0.5.1"
|
|
2151
2151
|
for entry in vscode_doc["servers"].values():
|
|
2152
2152
|
assert entry["type"] == "stdio"
|
|
2153
2153
|
assert "--workspace-root" in entry["args"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/src/workstate_bootstrap/subcommands.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_ensure_hooks_path_make.py
RENAMED
|
File without changes
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install_manifest_walker.py
RENAMED
|
File without changes
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_install_profile_all_lifecycle.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workstate_bootstrap-0.7.0 → workstate_bootstrap-0.7.1}/tests/test_root_visible_task_plans.py
RENAMED
|
File without changes
|
|
File without changes
|