diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d3ff07e20..8c28f6aafb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2025.6.7](https://github.com/jdx/mise/compare/v2025.6.6..v2025.6.7) - 2025-06-23 + +### 🐛 Bug Fixes + +- **(aqua)** fix versions order by [@risu729](https://github.com/risu729) in [#5406](https://github.com/jdx/mise/pull/5406) + +### Ci + +- use pinnable tag of taiki-e/install-action by [@risu729](https://github.com/risu729) in [#5405](https://github.com/jdx/mise/pull/5405) + ## [2025.6.6](https://github.com/jdx/mise/compare/v2025.6.5..v2025.6.6) - 2025-06-23 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index e8f2021b10..fbcb262468 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3737,7 +3737,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.6.6" +version = "2025.6.7" dependencies = [ "async-backtrace", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index e850eca013..3180d63055 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2025.6.6" +version = "2025.6.7" edition = "2024" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index a1af3ed031..3b42395c77 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option ```sh-session $ curl https://mise.run | sh $ ~/.local/bin/mise --version -2025.6.6 macos-arm64 (a1b2d3e 2025-06-23) +2025.6.7 macos-arm64 (a1b2d3e 2025-06-23) ``` Hook mise into your shell (pick the right one for your shell): diff --git a/aqua-registry b/aqua-registry index 3bbf4b1ea0..418f23d3c9 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 3bbf4b1ea0195e00f31488595bc69ecf07dcf9f8 +Subproject commit 418f23d3c90f1c24d7ea74d80e25c34e8c22b43f diff --git a/completions/_mise b/completions/_mise index 17f425378d..d5b713e67d 100644 --- a/completions/_mise +++ b/completions/_mise @@ -27,11 +27,11 @@ _mise() { zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy fi - if ( [[ -z "${_usage_spec_mise_2025_6_6:-}" ]] || _cache_invalid _usage_spec_mise_2025_6_6 ) \ - && ! _retrieve_cache _usage_spec_mise_2025_6_6; + if ( [[ -z "${_usage_spec_mise_2025_6_7:-}" ]] || _cache_invalid _usage_spec_mise_2025_6_7 ) \ + && ! _retrieve_cache _usage_spec_mise_2025_6_7; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2025_6_6 spec + _store_cache _usage_spec_mise_2025_6_7 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index b89e28b986..c409c1f646 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2025_6_6:-} ]]; then - _usage_spec_mise_2025_6_6="$(mise usage)" + if [[ -z ${_usage_spec_mise_2025_6_7:-} ]]; then + _usage_spec_mise_2025_6_7="$(mise usage)" fi local cur prev words cword was_split comp_args _comp_initialize -n : -- "$@" || return # shellcheck disable=SC2207 - _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_6_6}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_6_7}" --cword="$cword" -- "${words[@]}")" _comp_ltrim_colon_completions "$cur" # shellcheck disable=SC2181 if [[ $? -ne 0 ]]; then diff --git a/completions/mise.fish b/completions/mise.fish index 11f86f8ad8..0460863806 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null return 1 end -if ! set -q _usage_spec_mise_2025_6_6 - set -g _usage_spec_mise_2025_6_6 (mise usage | string collect) +if ! set -q _usage_spec_mise_2025_6_7 + set -g _usage_spec_mise_2025_6_7 (mise usage | string collect) end set -l tokens if commandline -x >/dev/null 2>&1 - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_6_6" -- (commandline -xpc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_6_7" -- (commandline -xpc) (commandline -t))' else - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_6_6" -- (commandline -opc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_6_7" -- (commandline -opc) (commandline -t))' end diff --git a/default.nix b/default.nix index 6b4e80e337..628a555e5b 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.6.6"; + version = "2025.6.7"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 2bf9ed3348..6cb3418cd4 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2025.6.6 +Version: 2025.6.7 Release: 1 URL: https://github.com/jdx/mise/ Group: System