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
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

package enum AstrolabeHostMetadata {
/// Host release version advertised during Runtime negotiation.
package static let version = "2.2.0"
package static let version = "2.2.1"
}
2 changes: 1 addition & 1 deletion docs/protocol-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The protocol has three independent versions that must not be conflated:
| --- | --- | --- |
| Package version | `AstrolabeProtocol 2.0.0`, `astrolabe-protocol-kotlin 2.0.0` | SwiftPM and Maven Central dependencies and releases |
| Wire Protocol version | `2.0` | Runtime handshake and compatibility decisions |
| Product version | Host 2.1.0 release snapshot: `astrolabe 2.2.0`, `runtime-ios 2.1.0`, `runtime-android 2.0.1` | Independent Host and platform SDK releases |
| Product version | Host 2.1.0 release snapshot: `astrolabe 2.2.1`, `runtime-ios 2.1.0`, `runtime-android 2.0.1` | Independent Host and platform SDK releases |

The product-version example is a release snapshot, not a lockstep versioning
requirement.
Expand Down
4 changes: 2 additions & 2 deletions mcp-adapter/package-lock.json

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

2 changes: 1 addition & 1 deletion mcp-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astrolabe/mcp-adapter",
"version": "2.2.0",
"version": "2.2.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "astrolabe",
"version": "2.2.0",
"version": "2.2.1",
"private": true,
"workspaces": [
"mcp-adapter"
Expand Down
3 changes: 2 additions & 1 deletion scripts/smoke-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ const expectedMCPToolNames = [
"find_nodes",
"inspect_node",
"check_node",
"check_layout"
"check_layout",
"query_ui_graph"
].sort();

let selectedAppId = process.env.ASTROLABE_APP_ID ?? "";
Expand Down