-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
chore: release 2026.3.0 #8406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: release 2026.3.0 #8406
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,9 +9,9 @@ _mise() { | |
|
|
||
| local cur prev words cword was_split comp_args | ||
| _comp_initialize -n : -- "$@" || return | ||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_24.spec" | ||
| local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_0.spec" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases. |
||
| if [[ ! -f "$spec_file" ]]; then | ||
| mise usage > "$spec_file" | ||
| mise usage >| "$spec_file" | ||
| fi | ||
| # shellcheck disable=SC2207 | ||
| _comp_compgen -- -W "$(command usage complete-word --shell bash -f "$spec_file" --cword="$cword" -- "${words[@]}")" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null | |
| return 1 | ||
| end | ||
| set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end) | ||
| set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_2_24.spec" | ||
| set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_3_0.spec" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases. |
||
| if not test -f "$spec_file" | ||
| mise usage | string collect > "$spec_file" | ||
| end | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ Register-ArgumentCompleter -Native -CommandName 'mise' -ScriptBlock { | |
| param($wordToComplete, $commandAst, $cursorPosition) | ||
|
|
||
| $tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() } | ||
| $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_2_24.kdl" | ||
| $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_3_0.kdl" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases. |
||
|
|
||
| if (-not (Test-Path $specFile)) { | ||
| mise usage | Out-File -FilePath $specFile -Encoding utf8 | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To improve maintainability and avoid having to update this file on every release, the version number for the spec file can be determined dynamically. This will make the completion script more robust and reduce manual work during releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.