Compare commits

..

3 Commits

Author SHA1 Message Date
Andrey Nering
8dfafe507f v3.46.3 2025-12-19 15:50:51 -03:00
Andrey Nering
678fdec7d2 docs(changelog): add entry for #2593 and #2594 2025-12-19 15:50:33 -03:00
Valentin Maerten
3626b271a7 fix(completion): correct zsh pattern matching for global flag (#2594) 2025-12-19 15:48:59 -03:00
4 changed files with 10 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## v3.46.3 - 2025-12-19
- Fixed regression in completion script for zsh (#2593, #2594 by @vmaerten).
## v3.46.2 - 2025-12-18
- Fixed a regression on previous release that affected variables passed via

View File

@@ -34,7 +34,7 @@ function __task_list() {
fi
# Check if global flag is set
if (( ${+opt_args[(i)-g|--global]} )); then
if (( ${+opt_args[-g]} || ${+opt_args[--global]} )); then
cmd+=(--global)
fi

View File

@@ -1 +1 @@
3.46.2
3.46.3

View File

@@ -7,6 +7,10 @@ outline: deep
::: v-pre
## v3.46.3 - 2025-12-19
- Fixed regression in completion script for zsh (#2593, #2594 by @vmaerten).
## v3.46.2 - 2025-12-18
- Fixed a regression on previous release that affected variables passed via