@bonginkan/maria-lite 6.3.2 → 7.0.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
@@ -1,4 +1,4 @@
1
- MARIA-LITE (v6.3.2)
1
+ MARIA-LITE (v7.0.0)
2
2
  ===================
3
3
 
4
4
  MARIA-LITE is a lightweight, standalone CLI build of MARIA OS focused on a smaller runtime surface while preserving API compatibility with `@bonginkan/maria`.
@@ -43,7 +43,7 @@ Notes:
43
43
  - Clone commands write under `artifacts/<role>-clone/` when `--apply` (or implicit apply is enabled).
44
44
 
45
45
  ## Version
46
- This package is published as `6.3.2`.
46
+ This package is published as `7.0.0`.
47
47
 
48
48
  ## Extensions (Enterprise)
49
49
 
@@ -126,6 +126,19 @@ Append creator-provided knowledge to common context:
126
126
 
127
127
  ## Release Notes
128
128
 
129
+ ### v7.0.0 (2026/03)
130
+
131
+ #### Features
132
+
133
+ - /vup now also bumps desktop build metadata for app/exe releases.
134
+ - /vup output includes clearer post-apply steps to commit, tag, and push.
135
+
136
+ #### Bug fixes
137
+
138
+ - Updated bundled knowledge pack catalogs to reflect new and rebalanced entries.
139
+
140
+ ---
141
+
129
142
  ### v6.3.2 (2026/03)
130
143
 
131
144
  #### Features
package/dist/cli.cjs CHANGED
@@ -97578,7 +97578,7 @@ function resolvePackageJsonNearEntrypoint() {
97578
97578
  }
97579
97579
  function resolveMariaLiteVersionInfo() {
97580
97580
  const fallbackName = EXPECTED_PKG_NAME;
97581
- const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.3.2";
97581
+ const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "7.0.0";
97582
97582
  const near = resolvePackageJsonNearEntrypoint();
97583
97583
  if (near) {
97584
97584
  const name = fallbackName;
@@ -101169,6 +101169,7 @@ This command requires the repo scripts.` };
101169
101169
  lines.push(entryPreview);
101170
101170
  lines.push("");
101171
101171
  lines.push("Tip: run with --apply to write changes.");
101172
+ lines.push("After --apply, commit + tag + push to trigger Tauri desktop build.");
101172
101173
  return {
101173
101174
  text: lines.join("\n").trim(),
101174
101175
  json: wantsJson ? {
@@ -101211,8 +101212,13 @@ This command requires the repo scripts.` };
101211
101212
  if (nextDataVersion) outLines.push(`nextData=${nextDataVersion}`);
101212
101213
  outLines.push(`npmLatest=${npmLatest}`);
101213
101214
  outLines.push(`npmGitHead=${baseSha}`);
101214
- const updatedFiles = ["src-lite/package.json", "src-lite/package-lock.json", "src-lite/shared/version.ts", "src-lite/README.md", "src-lite/maria-lite-data/package.json"];
101215
+ const updatedFiles = ["src-lite/package.json", "src-lite/package-lock.json", "src-lite/shared/version.ts", "src-lite/README.md", "src-lite/maria-lite-data/package.json", "src-lite/src-tauri/tauri.conf.json", "src-lite/src-tauri/Cargo.toml"];
101215
101216
  outLines.push(`updated=${updatedFiles.join(", ")}`);
101217
+ outLines.push("");
101218
+ outLines.push("Next steps:");
101219
+ outLines.push(` git add -A && git commit -m "v${nextVersion}"`);
101220
+ outLines.push(` git tag v${nextVersion}`);
101221
+ outLines.push(` git push && git push --tags # \u2192 triggers Tauri desktop build`);
101216
101222
  return {
101217
101223
  text: outLines.join("\n").trim(),
101218
101224
  json: wantsJson ? {
package/dist/ext.cjs CHANGED
@@ -98004,7 +98004,7 @@ function resolvePackageJsonNearEntrypoint() {
98004
98004
  }
98005
98005
  function resolveMariaLiteVersionInfo() {
98006
98006
  const fallbackName = EXPECTED_PKG_NAME;
98007
- const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.3.2";
98007
+ const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "7.0.0";
98008
98008
  const near = resolvePackageJsonNearEntrypoint();
98009
98009
  if (near) {
98010
98010
  const name = fallbackName;
@@ -1 +1 @@
1
- {"buildTimestamp":"2026-03-03T20:12:12.348Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
1
+ {"buildTimestamp":"2026-03-03T22:07:03.940Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonginkan/maria-lite",
3
- "version": "6.3.2",
3
+ "version": "7.0.0",
4
4
  "description": "MARIA-LITE: lightweight MARIA OS CLI (src-lite).",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Bonginkan Inc.",