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 +12 -0
- package/gen-context.js +1 -1
- package/package.json +1 -1
- package/src/mcp/server.js +1 -1
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.
|
|
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
package/src/mcp/server.js
CHANGED