ltcai 5.4.0 → 5.5.0

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/README.md CHANGED
@@ -193,24 +193,23 @@ See [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) for developer workflow details.
193
193
 
194
194
  ## Current Release Preparation
195
195
 
196
- The current development target is **5.4.0 Brain Automation Scheduler**:
196
+ The current development target is **5.5.0 Release Coordination**:
197
197
 
198
- - Consent-first Brain automation recipes (Daily Memory Digest, Weekly Project Review,
199
- Follow-up Radar) install from Automate page as reviewable disabled drafts.
200
- - TriggerService provides scheduler/brain-event triggers with dedup guards,
201
- LATTICE_TZ support, consecutive failure degraded status, and explicit enabled:false
202
- disarming.
203
- - lattice_brain/runtime dependency graph 정리 and entrypoint documentation added.
204
- - E2E scenarios for draft install + trigger execution with provenance.
205
- - All package/runtime/static versions synchronized to 5.4.0; PR #4 remote gates passed.
198
+ - Carries forward the v5.4.0 Brain Automation Scheduler as the release-ready
199
+ baseline for the 5.5.0 line.
200
+ - Keeps consent-first automation, TriggerService dedup/LATTICE_TZ/degraded
201
+ behavior, and runtime graph cleanup intact.
202
+ - Synchronizes Python, npm, VSIX, Tauri, runtime constants, lockfiles, and static
203
+ metadata to 5.5.0.
204
+ - Updates release documentation and artifact naming to exact 5.5.0 filenames.
206
205
 
207
- Expected artifacts for 5.4.0 release must use exact filenames:
206
+ Expected artifacts for 5.5.0 release must use exact filenames:
208
207
 
209
- - `dist/ltcai-5.4.0-py3-none-any.whl`
210
- - `dist/ltcai-5.4.0.tar.gz`
211
- - `ltcai-5.4.0.tgz`
212
- - `dist/ltcai-5.4.0.vsix`
213
- - `src-tauri/target/release/bundle/dmg/Lattice AI_5.4.0_aarch64.dmg`
208
+ - `dist/ltcai-5.5.0-py3-none-any.whl`
209
+ - `dist/ltcai-5.5.0.tar.gz`
210
+ - `ltcai-5.5.0.tgz`
211
+ - `dist/ltcai-5.5.0.vsix`
212
+ - `src-tauri/target/release/bundle/dmg/Lattice AI_5.5.0_aarch64.dmg`
214
213
 
215
214
  Do not upload `dist/*`. Package registry publishing remains owner-run.
216
215
 
@@ -229,6 +228,7 @@ Do not upload `dist/*`. Package registry publishing remains owner-run.
229
228
 
230
229
  | Version | Theme |
231
230
  | --- | --- |
231
+ | 5.5.0 | Release Coordination: synchronized package/runtime/static versions and release docs for the 5.5.0 line while preserving v5.4.0 Brain Automation Scheduler behavior |
232
232
  | 5.4.0 | Brain Automation Scheduler: consent-first recipe drafts (Daily/Weekly/Follow-up), TriggerService with dedup/LATTICE_TZ/degraded, runtime graph cleanup, E2E scenarios |
233
233
  | 5.3.0 | Product Clarity and Runtime Cleanup: user-first README/onboarding, unified Digital Brain identity, legacy compatibility map, and app factory runtime seams |
234
234
  | 5.2.0 | User-Focused Model Transformation: structured model capability registry, HF verification transparency, model recommendation UX, and workspace-scoped marketplace state |
package/docs/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  The top entry is the current release-preparation target. Older entries are
4
4
  historical and may describe behavior as it existed at that release.
5
5
 
6
+ ## [5.5.0] - 2026-06-15
7
+
8
+ > Release Coordination. Synchronized package/runtime/static metadata and release
9
+ > documentation for the 5.5.0 line while preserving v5.4.0 Brain Automation
10
+ > Scheduler behavior.
11
+
12
+ ### Changed
13
+ - Bumped synchronized Python, npm, VSIX, Tauri, runtime constants, lockfiles, and
14
+ static asset manifest metadata to `5.5.0`.
15
+ - Updated README, RELEASE.md, RELEASE_NOTES.md, FEATURE_STATUS.md,
16
+ vscode-extension/README.md, and this changelog so current-release references
17
+ and expected artifact names point at exact 5.5.0 filenames.
18
+
19
+ ### Preserved
20
+ - v5.4.0 consent-first Brain automation recipes, TriggerService dedup,
21
+ LATTICE_TZ, degraded status, enabled:false disarming, runtime graph cleanup,
22
+ and E2E scenario coverage remain the functional baseline.
23
+ - Package registry publishing and deployment remain owner-run only.
24
+
6
25
  ## [5.4.0] - 2026-06-15
7
26
 
8
27
  > Brain Automation Scheduler. Consent-first recipe drafts (Daily Memory Digest,
@@ -26,7 +26,7 @@ from .storage import (
26
26
  storage_from_env,
27
27
  )
28
28
 
29
- __version__ = "5.4.0"
29
+ __version__ = "5.5.0"
30
30
 
31
31
  __all__ = [
32
32
  "AgentRuntime",
@@ -19,7 +19,7 @@ from datetime import datetime
19
19
  from typing import Any, Callable, Dict, List, Optional
20
20
 
21
21
 
22
- MULTI_AGENT_VERSION = "5.4.0"
22
+ MULTI_AGENT_VERSION = "5.5.0"
23
23
 
24
24
  AGENT_ROLES = ("researcher", "planner", "executor", "reviewer", "release")
25
25
  CORE_PIPELINE = ("planner", "executor", "reviewer")
@@ -1,3 +1,3 @@
1
1
  """Lattice AI - modular server package."""
2
2
 
3
- __version__ = "5.4.0"
3
+ __version__ = "5.5.0"
@@ -11,7 +11,7 @@ from copy import deepcopy
11
11
  from typing import Any, Dict, List, Optional
12
12
 
13
13
 
14
- MARKETPLACE_VERSION = "5.4.0"
14
+ MARKETPLACE_VERSION = "5.5.0"
15
15
  TEMPLATE_KINDS = ("plugin", "workflow", "agent")
16
16
 
17
17
 
@@ -19,7 +19,7 @@ from pathlib import Path
19
19
  from typing import Any, Callable, Dict, Iterable, List, Optional
20
20
 
21
21
 
22
- WORKSPACE_OS_VERSION = "5.4.0"
22
+ WORKSPACE_OS_VERSION = "5.5.0"
23
23
 
24
24
  # Workspace types separate single-user Personal workspaces from shared
25
25
  # Organization workspaces. Both keep the same local-first JSON store; the type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ltcai",
3
- "version": "5.4.0",
3
+ "version": "5.5.0",
4
4
  "description": "Lattice AI — local-first Digital Brain that keeps your knowledge durable across any AI model.",
5
5
  "homepage": "https://github.com/TaeSooPark-PTS/LatticeAI#readme",
6
6
  "repository": {
@@ -1654,7 +1654,7 @@ dependencies = [
1654
1654
 
1655
1655
  [[package]]
1656
1656
  name = "lattice-ai-desktop"
1657
- version = "5.4.0"
1657
+ version = "5.5.0"
1658
1658
  dependencies = [
1659
1659
  "plist",
1660
1660
  "serde",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lattice-ai-desktop"
3
- version = "5.4.0"
3
+ version = "5.5.0"
4
4
  description = "Lattice AI Digital Brain desktop shell"
5
5
  authors = ["TaeSoo Park"]
6
6
  edition = "2021"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://schema.tauri.app/config/2",
3
3
  "productName": "Lattice AI",
4
- "version": "5.4.0",
4
+ "version": "5.5.0",
5
5
  "identifier": "ai.lattice.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run frontend:dev",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "5.4.0",
2
+ "version": "5.5.0",
3
3
  "generated_at": "vite",
4
4
  "entrypoints": {
5
5
  "app": "/static/app/index.html"