feinai 0.6.1 → 0.6.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.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/cli.ts +1 -1
- package/src/tasks.ts +2 -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.6.3] - 2026-06-11
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- `feinai --version` now reports the correct version number
|
|
10
|
+
- `feinai edit <TASK-ID> --worktree <path>` no longer throws "provide at least one field to edit" when `--worktree` is the only flag passed
|
|
11
|
+
|
|
6
12
|
## [0.5.0] - 2026-06-10
|
|
7
13
|
|
|
8
14
|
### Added
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED
package/src/tasks.ts
CHANGED
|
@@ -324,7 +324,8 @@ export function editTask(
|
|
|
324
324
|
input.description === undefined &&
|
|
325
325
|
input.packages === undefined &&
|
|
326
326
|
input.quality_gates === undefined &&
|
|
327
|
-
input.blocked_by === undefined
|
|
327
|
+
input.blocked_by === undefined &&
|
|
328
|
+
input.worktree === undefined
|
|
328
329
|
) {
|
|
329
330
|
throw new Error('editTask: provide at least one field to edit');
|
|
330
331
|
}
|