nur-cli 0.29.1 → 0.29.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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/bin.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -51,3 +51,15 @@ Bump `version` in `npm/package.json` to match the release tag before publishing.
51
51
  refreshes the stack via `nur install`.
52
52
  - `nur update` continues to self-update the native binary directly from GitHub
53
53
  Releases; the npm package never needs to be involved again after install.
54
+
55
+ ---
56
+
57
+ ## License
58
+
59
+ **GNU General Public License v3.0 (or later)** — see [LICENSE](./LICENSE).
60
+
61
+ Meta CLI is free software: you may redistribute it and/or modify it under the
62
+ terms of the GPL as published by the Free Software Foundation, either version 3
63
+ of the License, or (at your option) any later version. It is distributed in the
64
+ hope that it will be useful, but **without any warranty**; without even the
65
+ implied warranty of merchantability or fitness for a particular purpose.
package/bin.js CHANGED
@@ -21,7 +21,7 @@ const { spawnSync } = require("child_process");
21
21
 
22
22
  const REPO = "nuroctane/nur-cli";
23
23
  // Falls back to this pinned version when `latest/download` is unreachable.
24
- const FALLBACK_VERSION = "0.29.1";
24
+ const FALLBACK_VERSION = "0.29.3";
25
25
 
26
26
  function fail(msg) {
27
27
  process.stderr.write(`nur-cli: ${msg}\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nur-cli",
3
- "version": "0.29.1",
3
+ "version": "0.29.3",
4
4
  "description": "NurCLI - fully loaded multi-provider coding agent (TUI, vision, tools, sandbox, skills). One command installs the native binary: npx nur-cli",
5
5
  "license": "MIT",
6
6
  "repository": {