diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b098e8b8..86483a3adf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2025.1.10](https://github.com/jdx/mise/compare/v2025.1.9..v2025.1.10) - 2025-01-18 + +### 🐛 Bug Fixes + +- completions were missing non-asdf tools by [@jdx](https://github.com/jdx) in [55b31a4](https://github.com/jdx/mise/commit/55b31a452b807ada4e2ba40c8b5588b77b79642e) + +### Chore + +- added issue auto-closer by [@jdx](https://github.com/jdx) in [3c831c1](https://github.com/jdx/mise/commit/3c831c19a644fbb2f393f969ebaa5137f9415793) + ## [2025.1.9](https://github.com/jdx/mise/compare/v2025.1.8..v2025.1.9) - 2025-01-17 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 3764e1d8d3..179b3d83c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2631,7 +2631,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.1.9" +version = "2025.1.10" dependencies = [ "base64 0.22.1", "built", diff --git a/Cargo.toml b/Cargo.toml index 5b7fc6a3e9..f7ca595249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2025.1.9" +version = "2025.1.10" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index bb8723f609..b4d0bda5f0 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)): ```sh-session $ curl https://mise.run | sh $ ~/.local/bin/mise --version -2025.1.9 macos-arm64 (a1b2d3e 2025-01-17) +2025.1.10 macos-arm64 (a1b2d3e 2025-01-18) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index b8fc9fcc59..c99a9b8800 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit b8fc9fcc595ab61325b536b0185446830173194c +Subproject commit c99a9b88009fc43d30736301a7c76af13821a055 diff --git a/completions/_mise b/completions/_mise index 713fab4489..1dab2b6ba1 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_1_9:-}" ]] || _cache_invalid _usage_spec_mise_2025_1_9 ) \ - && ! _retrieve_cache _usage_spec_mise_2025_1_9; + if ( [[ -z "${_usage_spec_mise_2025_1_10:-}" ]] || _cache_invalid _usage_spec_mise_2025_1_10 ) \ + && ! _retrieve_cache _usage_spec_mise_2025_1_10; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2025_1_9 spec + _store_cache _usage_spec_mise_2025_1_10 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 973519fcf3..db79a0d45e 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2025_1_9:-} ]]; then - _usage_spec_mise_2025_1_9="$(mise usage)" + if [[ -z ${_usage_spec_mise_2025_1_10:-} ]]; then + _usage_spec_mise_2025_1_10="$(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_1_9}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_1_10}" --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 c90e812d3d..986444acc3 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_1_9 - set -g _usage_spec_mise_2025_1_9 (mise usage | string collect) +if ! set -q _usage_spec_mise_2025_1_10 + set -g _usage_spec_mise_2025_1_10 (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_1_9" -- (commandline -xpc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_10" -- (commandline -xpc) (commandline -t))' else - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_9" -- (commandline -opc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_10" -- (commandline -opc) (commandline -t))' end diff --git a/default.nix b/default.nix index 877be60bf7..91ae601b52 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.1.9"; + version = "2025.1.10"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 1e6dd04527..f9b24296c2 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.1.9 +Version: 2025.1.10 Release: 1 URL: https://github.com/jdx/mise/ Group: System