@linxiraos/pi-utils 1.1.0 → 1.1.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.1.2] - 2026-08-25
6
+
7
+ ### Fixed
8
+
9
+ - Republished as 1.1.2 to reset the `latest` tag after the broken 1.1.0 (no functional change over 1.1.1).
10
+
11
+ ## [1.1.1] - 2026-08-25
12
+
13
+ ### Fixed
14
+
15
+ - Published tarballs now carry real dependency versions instead of Bun's `catalog:` protocol (1.1.0 installs failed with "Unsupported URL Type catalog:").
16
+
5
17
  ## [1.1.0] - 2026-08-25
6
18
 
7
19
  ### Changed
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # @linxiraos/pi-utils
2
2
 
3
- Shared utilities for [oh-my-pi](https://github.com/can1357/oh-my-pi) packages. Zero ceremony, Bun-first.
3
+ Shared utilities for [Zeta](https://github.com/Linxira-OS/linxira-zeta) packages. Zero ceremony, Bun-first.
4
4
 
5
5
  ## Notable modules
6
6
 
7
7
  | Module | Purpose |
8
8
  | --- | --- |
9
- | `logger` | Centralized logger writing to `~/.omp/logs/` with rotation (TUI-safe — never stdout) |
9
+ | `logger` | Centralized logger writing to `~/.zeta/logs/` with rotation (TUI-safe — never stdout) |
10
10
  | `prompt` | Handlebars-based prompt templating and formatting helpers |
11
- | `dirs` | Path helpers for omp config directories (`~/.omp`, XDG-aware on Linux) |
11
+ | `dirs` | Path helpers for Zeta config directories (`~/.zeta`, XDG-aware on Linux) |
12
12
  | `stream` | `readStream` / `readLines` helpers over `ReadableStream` |
13
13
  | `ptree` / `procmgr` | Process trees, `ChildProcess` wrapper, process lifecycle management |
14
14
  | `postmortem` | Cleanup callbacks on exit, signals, and fatal exceptions |
@@ -32,5 +32,5 @@ Ships TypeScript source directly (no build step); requires Bun ≥ 1.3.14.
32
32
 
33
33
  ## References
34
34
 
35
- - [Monorepo README](https://github.com/can1357/oh-my-pi#readme)
35
+ - [Monorepo README](https://github.com/Linxira-OS/linxira-zeta#readme)
36
36
  - [CHANGELOG](./CHANGELOG.md)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@linxiraos/pi-utils",
4
- "version": "1.1.0",
4
+ "version": "1.1.2",
5
5
  "description": "Shared utilities for pi packages",
6
6
  "homepage": "https://linxira-os.github.io/zeta/",
7
7
  "author": "Can Boluk",
@@ -31,7 +31,7 @@
31
31
  "fmt": "biome format --write ."
32
32
  },
33
33
  "dependencies": {
34
- "@linxiraos/pi-natives": "1.1.0"
34
+ "@linxiraos/pi-natives": "1.1.2"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/bun": "^1.3.14"