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 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.
@@ -1,3 +1,3 @@
1
1
  """Lattice AI - modular server package."""
2
2
 
3
- __version__ = "1.0.0"
3
+ __version__ = "1.0.1"
@@ -18,7 +18,7 @@ from pathlib import Path
18
18
  from typing import Any, Callable, Dict, Iterable, List, Optional
19
19
 
20
20
 
21
- WORKSPACE_OS_VERSION = "1.0.0"
21
+ WORKSPACE_OS_VERSION = "1.0.1"
22
22
 
23
23
  WORKSPACE_AREAS = [
24
24
  "graph",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ltcai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Lattice AI Workspace OS for local-first graph, memory, agent, workflow, and skill operations",
5
5
  "homepage": "https://github.com/TaeSooPark-PTS/LatticeAI#readme",
6
6
  "repository": {