sigmap 2.0.0-beta.2 → 2.0.0-beta.3

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,18 @@ Format: [Semantic Versioning](https://semver.org/)
6
6
 
7
7
  ---
8
8
 
9
+ ## [2.0.0-beta.3] — 2026-04-03
10
+
11
+ ### Changed
12
+ - Prerelease version bumped from `2.0.0-beta.2` to `2.0.0-beta.3` across CLI, MCP server info, root package metadata, and VS Code extension metadata.
13
+ - Version drift in [gen-context.js](gen-context.js) was corrected so runtime reporting matches published package metadata.
14
+
15
+ ### Validation gate
16
+ - `node scripts/bundle.js`
17
+ - `node test/run.js`
18
+ - `node test/integration/all.js`
19
+ - `node gen-context.js --report`
20
+
9
21
  ## [2.0.0-beta.2] — 2026-04-03
10
22
 
11
23
  ### Fixed
package/gen-context.js CHANGED
@@ -3520,7 +3520,7 @@ const path = require('path');
3520
3520
  const os = require('os');
3521
3521
  const { execSync } = require('child_process');
3522
3522
 
3523
- const VERSION = '2.0.0-beta.2';
3523
+ const VERSION = '2.0.0-beta.3';
3524
3524
  const MARKER = '\n\n## Auto-generated signatures\n<!-- Updated by gen-context.js -->\n';
3525
3525
 
3526
3526
  function requireSourceOrBundled(key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigmap",
3
- "version": "2.0.0-beta.2",
3
+ "version": "2.0.0-beta.3",
4
4
  "description": "Zero-dependency AI context engine — 97% token reduction. No npm install. Runs on Node 18+.",
5
5
  "main": "gen-context.js",
6
6
  "bin": {
package/src/mcp/server.js CHANGED
@@ -18,7 +18,7 @@ const { readContext, searchSignatures, getMap, createCheckpoint, getRouting, exp
18
18
 
19
19
  const SERVER_INFO = {
20
20
  name: 'sigmap',
21
- version: '2.0.0-beta.2',
21
+ version: '2.0.0-beta.3',
22
22
  description: 'SigMap MCP server — code signatures on demand',
23
23
  };
24
24