feinai 0.8.5 → 0.8.6
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 +6 -0
- package/package.json +4 -4
- package/src/cli.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
5
5
|
|
|
6
|
+
## [0.8.6] - 2026-09-08
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- **`--version` mostraba un número desactualizado.** `src/cli.ts` tenía `VERSION` hardcodeado como string literal, separado de `package.json` — al bumpear la versión en 0.8.5 quedó desincronizado y `feinai --version` seguía reportando `0.8.4`. Ahora `VERSION` se lee de `package.json` en runtime, así que no se puede volver a desincronizar.
|
|
11
|
+
|
|
6
12
|
## [0.8.5] - 2026-09-07
|
|
7
13
|
|
|
8
14
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "feinai",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"description": "Task & spec manager for AI agents — parallel worktrees, live dashboard, SDD skills",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"feinai": "
|
|
8
|
-
"opengit": "
|
|
7
|
+
"feinai": "src/cli.ts",
|
|
8
|
+
"opengit": "src/opengit.sh"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "bun src/cli.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/mvisca/feinai.git"
|
|
33
|
+
"url": "git+https://github.com/mvisca/feinai.git"
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/mvisca/feinai#readme",
|
|
36
36
|
"bugs": {
|
package/src/cli.ts
CHANGED
|
@@ -57,7 +57,9 @@ import {
|
|
|
57
57
|
type OrphanKillResult,
|
|
58
58
|
} from "./server-state";
|
|
59
59
|
|
|
60
|
-
const VERSION =
|
|
60
|
+
const VERSION: string = JSON.parse(
|
|
61
|
+
readFileSync(resolve(dirname(fileURLToPath(import.meta.url)), "../package.json"), "utf-8"),
|
|
62
|
+
).version;
|
|
61
63
|
|
|
62
64
|
interface ParsedArgs {
|
|
63
65
|
positional: string[];
|