ltcai 1.0.0 → 1.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/docs/CHANGELOG.md +21 -0
- package/latticeai/__init__.py +1 -1
- package/latticeai/core/workspace_os.py +1 -1
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1] - 2026-05-31
|
|
4
|
+
|
|
5
|
+
> CI packaging fix for the VS Code extension build.
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Release (build-only) VSIX packaging** — the `Build VSIX` job failed with
|
|
10
|
+
`Extension entrypoint(s) missing: extension/out/extension.js` because the
|
|
11
|
+
workflow ran `vsce package` without first compiling the TypeScript sources
|
|
12
|
+
(`vscode-extension/out/` is gitignored and absent in a clean CI checkout).
|
|
13
|
+
- Added a `vscode:prepublish` → `compile` (`tsc -p .`) script to
|
|
14
|
+
`vscode-extension/package.json` so `vsce package` always compiles the
|
|
15
|
+
extension entrypoint, aligning the local and CI build paths.
|
|
16
|
+
- Updated `.github/workflows/release.yml` to run `npm run compile` and assert
|
|
17
|
+
`out/extension.js` exists before packaging.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Release metadata aligned to `1.0.1` across Python, npm, VS Code extension,
|
|
22
|
+
FastAPI app metadata, and `/health`.
|
|
23
|
+
|
|
3
24
|
## [1.0.0] - 2026-05-31
|
|
4
25
|
|
|
5
26
|
> AI Workspace OS integration release.
|
package/latticeai/__init__.py
CHANGED
package/package.json
CHANGED