From ee02473f98d724e5adcdefae003760aa97ce6d79 Mon Sep 17 00:00:00 2001 From: Michael Baikov Date: Tue, 8 Oct 2024 12:35:04 -0400 Subject: [PATCH 1/2] complete_run: fix a typo --- src/complete_run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/complete_run.rs b/src/complete_run.rs index 01f67673..213f4545 100644 --- a/src/complete_run.rs +++ b/src/complete_run.rs @@ -41,7 +41,7 @@ fn dump_fish_completer(name: &str) { eval $current[1] \"$tmpline\" end -complete --no-files --command {name}--arguments '(_bpaf_dynamic_completion)' +complete --no-files --command {name} --arguments '(_bpaf_dynamic_completion)' "#, name = name ); From 6c4f422ac1568249cdb4e0e58dd593f60c0c1189 Mon Sep 17 00:00:00 2001 From: Michael Baikov Date: Tue, 8 Oct 2024 12:37:10 -0400 Subject: [PATCH 2/2] Release 0.9.15 --- Cargo.toml | 2 +- Changelog.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ab616772..9c5363c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bpaf" -version = "0.9.14" +version = "0.9.15" edition = "2021" categories = ["command-line-interface"] description = "A simple Command Line Argument Parser with parser combinators" diff --git a/Changelog.md b/Changelog.md index 2fb2ec5c..a695a4de 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ # Change Log +## bpaf [0.9.15], 2024-10-08 +- a fix for a previous fix of fish completions, again - regenerate the files + ## bpaf [0.9.14], 2024-09-19 - add license files (#388) thanks @davide