Skip to content

Commit 6136aee

Browse files
committed
Prepare OpenHCS 0.6.3 release
1 parent e18fe7b commit 6136aee

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/source/development/mcp_release.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ the install-surface projections:
1616

1717
.. code-block:: bash
1818
19-
RELEASE_VERSION=0.6.2
19+
RELEASE_VERSION=0.6.3
2020
python scripts/sync_mcp_release_metadata.py
2121
python scripts/sync_mcp_release_metadata.py --check
2222
python scripts/sync_mcp_release_metadata.py --check --expected-version "$RELEASE_VERSION"

openhcs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from openhcs._source_dependencies import ensure_source_checkout_external_paths
1616

17-
__version__ = "0.6.2"
17+
__version__ = "0.6.3"
1818

1919
# Configure polystore defaults for OpenHCS integration
2020
os.environ.setdefault("POLYSTORE_METADATA_FILENAME", "openhcs_metadata.json")

packaging/codex/openhcs/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openhcs",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Inspect, author, validate, and run OpenHCS microscopy workflows through the local OpenHCS MCP server.",
55
"author": {
66
"name": "OpenHCSDev",

packaging/codex/openhcs/.mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"command": "uvx",
55
"args": [
66
"--from",
7-
"openhcs[gui,mcp]==0.6.2",
7+
"openhcs[gui,mcp]==0.6.3",
88
"openhcs-mcp"
99
]
1010
}

packaging/installers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ From the repository environment:
8383
```bash
8484
python -m pytest -q tests/installer
8585
python scripts/render_installer_contract.py \
86-
--version 0.6.2 \
86+
--version 0.6.3 \
8787
--output /tmp/openhcs-installer-contract.json
8888
```
8989

packaging/mcpb/openhcs/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.4",
33
"name": "openhcs",
44
"display_name": "OpenHCS",
5-
"version": "0.6.2",
5+
"version": "0.6.3",
66
"description": "Operate local OpenHCS microscopy workflows through MCP.",
77
"long_description": "Installs a pinned OpenHCS environment with the MCP server and PyQt user interface. The MCP process runs over stdio and attaches to an authenticated, separately running OpenHCS UI when GUI tools are requested.",
88
"author": {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[project]
22
name = "openhcs-mcpb-runtime"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
description = "Managed runtime for the OpenHCS MCP Bundle"
55
requires-python = ">=3.11,<3.14"
66
dependencies = [
7-
"openhcs[gui,mcp]==0.6.2",
7+
"openhcs[gui,mcp]==0.6.3",
88
]

server.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88
"url": "https://github.com/OpenHCSDev/OpenHCS",
99
"source": "github"
1010
},
11-
"version": "0.6.2",
11+
"version": "0.6.3",
1212
"packages": [
1313
{
1414
"registryType": "pypi",
1515
"registryBaseUrl": "https://pypi.org",
1616
"identifier": "openhcs",
17-
"version": "0.6.2",
17+
"version": "0.6.3",
1818
"runtimeHint": "uvx",
1919
"runtimeArguments": [
2020
{
2121
"type": "named",
2222
"name": "--with",
23-
"value": "openhcs[gui,mcp]==0.6.2",
23+
"value": "openhcs[gui,mcp]==0.6.3",
2424
"description": "Install the matching OpenHCS GUI and MCP dependencies."
2525
}
2626
],

0 commit comments

Comments
 (0)