@smartergpt/lexrunner 2.0.0 → 2.0.1

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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.0.1] - 2026-08-29
10
+
11
+ ### Fixed
12
+
13
+ - **Published MCP identity** - Report the installed package version from both the SDK MCP server and
14
+ the published `lexrunner-mcp` launcher instead of the stale pre-release `0.1.0` value. Release
15
+ tests now initialize the packed MCP through the official client transport and require its server
16
+ identity to match the installed manifest before accepting the tool inventory.
17
+
9
18
  ## [2.0.0] - 2026-08-29
10
19
 
11
20
  ### Breaking changes
package/README.md CHANGED
@@ -115,11 +115,12 @@ The checked-in package version is the single source for `lexrunner --version` an
115
115
 
116
116
  <!-- BEGIN GENERATED PACKAGE VERSION -->
117
117
 
118
- Current repository package version: **2.0.0**. npm availability and dist-tags are separate
118
+ Current repository package version: **2.0.1**. npm availability and dist-tags are separate
119
119
  release evidence; inspect the registry rather than inferring publication from source metadata.
120
120
  <!-- END GENERATED PACKAGE VERSION -->
121
121
 
122
- See the [2.0.0 release notes](docs/releases/2.0.0.md), the
122
+ See the [2.0.1 MCP identity correction](docs/releases/2.0.1.md), the
123
+ [2.0.0 plan-bound evidence release](docs/releases/2.0.0.md), the
123
124
  [1.5.2 exact Lex alignment release](docs/releases/1.5.2.md), the
124
125
  [1.5.1 release correction](docs/releases/1.5.1.md), the
125
126
  [1.4.1 canonical CLI release](docs/releases/1.4.1.md), the
package/dist/cli.cjs CHANGED
@@ -26773,7 +26773,7 @@ var import_config3 = require("dotenv/config");
26773
26773
  // package.json
26774
26774
  var package_default = {
26775
26775
  name: "@smartergpt/lexrunner",
26776
- version: "2.0.0",
26776
+ version: "2.0.1",
26777
26777
  type: "module",
26778
26778
  engines: {
26779
26779
  node: ">=24"
package/dist/cli.js CHANGED
@@ -470,7 +470,7 @@ import "dotenv/config";
470
470
  // package.json
471
471
  var package_default = {
472
472
  name: "@smartergpt/lexrunner",
473
- version: "2.0.0",
473
+ version: "2.0.1",
474
474
  type: "module",
475
475
  engines: {
476
476
  node: ">=24"
package/mcp-server.mjs CHANGED
@@ -19,6 +19,7 @@ import "dotenv/config";
19
19
  import { resolve, dirname } from "path";
20
20
  import { fileURLToPath } from "url";
21
21
  import { readFileSync, writeFileSync, existsSync, mkdirSync } from "fs";
22
+ import packageMetadata from "./package.json" with { type: "json" };
22
23
 
23
24
  const __dirname = dirname(fileURLToPath(import.meta.url));
24
25
 
@@ -1147,7 +1148,7 @@ async function handleRequest(request) {
1147
1148
  },
1148
1149
  serverInfo: {
1149
1150
  name: "lexrunner",
1150
- version: "0.1.0",
1151
+ version: packageMetadata.version,
1151
1152
  },
1152
1153
  },
1153
1154
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartergpt/lexrunner",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24"