negotium 0.3.2 → 0.3.4

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.
@@ -5,16 +5,23 @@ import { chmod, mkdir, readFile, rename, rm, writeFile } from "node:fs/promises"
5
5
  import { arch, homedir, platform } from "node:os";
6
6
  import { resolve } from "node:path";
7
7
 
8
- const VERSION = "v0.1.5";
8
+ const VERSION = "v0.1.7";
9
9
  const RELEASE_BASE = `https://github.com/maestrojeong/bash-rs-mcp/releases/download/${VERSION}`;
10
10
  const TARGETS = {
11
11
  "darwin-arm64": {
12
12
  asset: "bash-rs-macos-arm64",
13
- sha256: "b1c274d4fb5a6f9e028c623f149999f6482a2de02047b8065817d8671efa63de",
13
+ sha256: "e022996e43abdf7cd9ee4f3be7589c7f640234a300c6674c9324fe566559bc16",
14
14
  },
15
15
  "linux-x64": {
16
16
  asset: "bash-rs-linux-x64",
17
- sha256: "97b61842716502178a29c56240fc9cbc66770d268b27c213c4cc6870d6959b5b",
17
+ sha256: "7683948a77ab8dfffb732e3c019998e6510a443e504daf626b92754fe9f7857d",
18
+ },
19
+ // Linux on arm64 is what an Apple Silicon machine runs containers as, and
20
+ // what the cheaper cloud instances are. Until v0.1.6 published this asset,
21
+ // background_bash was simply absent on those hosts.
22
+ "linux-arm64": {
23
+ asset: "bash-rs-linux-arm64",
24
+ sha256: "1a631a4fff1d9ea9fadc37bf0e81eefb8e401e266bf6b8266bb4734f24af2c79",
18
25
  },
19
26
  };
20
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "negotium",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "type": "module",
5
5
  "description": "Install the Negotium multi-agent runtime and CLI with one package",
6
6
  "license": "Apache-2.0",