diff --git a/CHANGELOG.md b/CHANGELOG.md index af171634..5a1f9b36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.4.330 (2025-11-23) + +### PR [#1840](https://github.com/danielmiessler/Fabric/pull/1840) by [ZackaryWelch](https://github.com/ZackaryWelch): Replace deprecated bash function in completion script + +- Replace deprecated bash function in completion script to use `_comp_get_words` instead of `__get_comp_words_by_ref`, fixing compatibility issues with latest bash versions and preventing script breakage on updated distributions like Fedora 42+ + ## v1.4.329 (2025-11-20) ### PR [#1838](https://github.com/danielmiessler/fabric/pull/1838) by [ksylvan](https://github.com/ksylvan): refactor: implement i18n support for YouTube tool error messages diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 91c4cfd5..8538ecc9 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.329" +var version = "v1.4.330" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 2feb107a..3c4b2e2c 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1840.txt b/cmd/generate_changelog/incoming/1840.txt deleted file mode 100644 index 7329a731..00000000 --- a/cmd/generate_changelog/incoming/1840.txt +++ /dev/null @@ -1,3 +0,0 @@ -### PR [#1840](https://github.com/danielmiessler/Fabric/pull/1840) by [ZackaryWelch](https://github.com/ZackaryWelch): Replace deprecated bash function in completion script - -- Replace deprecated bash function in completion script to use `_comp_get_words` instead of `__get_comp_words_by_ref`, fixing compatibility issues with latest bash versions and preventing script breakage on updated distributions like Fedora 42+ diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 877588e0..10ce00ff 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.329" +"1.4.330"