diff --git a/CHANGELOG.md b/CHANGELOG.md index 4537a4e8..8f332f8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.4.389 (2026-01-23) + +### PR [#1960](https://github.com/danielmiessler/Fabric/pull/1960) by [ksylvan](https://github.com/ksylvan): fix: consume all positional arguments as input + +- Fix: consume all positional arguments as input by joining all positional arguments with spaces instead of using only the last argument, allowing commands to process entire phrases correctly + ## v1.4.388 (2026-01-23) ### PR [#1957](https://github.com/danielmiessler/Fabric/pull/1957) by [ksylvan](https://github.com/ksylvan): Add Novita AI as a new OpenAI-compatible provider diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index fa594895..141fbac1 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.388" +var version = "v1.4.389" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index ef560fa9..711d7460 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1960.txt b/cmd/generate_changelog/incoming/1960.txt deleted file mode 100644 index cb90b506..00000000 --- a/cmd/generate_changelog/incoming/1960.txt +++ /dev/null @@ -1,3 +0,0 @@ -### PR [#1960](https://github.com/danielmiessler/Fabric/pull/1960) by [ksylvan](https://github.com/ksylvan): fix: consume all positional arguments as input - -- Fix: consume all positional arguments as input by joining all positional arguments with spaces instead of using only the last argument, allowing commands to process entire phrases correctly diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 08c810f2..aa77e768 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.388" +"1.4.389"