From b04359f54a167e655d84b95dfe04339494845346 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Mon, 30 Dec 2024 18:40:37 -0600 Subject: [PATCH] chore: release 2024.12.24 (#3887) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- aqua-registry | 2 +- completions/_mise | 6 +++--- completions/mise.bash | 6 +++--- completions/mise.fish | 6 +++--- default.nix | 2 +- packaging/rpm/mise.spec | 2 +- 10 files changed, 25 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99ac53e0d..d3fde29d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2024.12.24](https://github.com/jdx/mise/compare/v2024.12.23..v2024.12.24) - 2024-12-31 + +### 🐛 Bug Fixes + +- switch back to asdf for gradle by [@jdx](https://github.com/jdx) in [cc88dca](https://github.com/jdx/mise/commit/cc88dca50e8e0dac94dbb83d0ce1ebcfc38a1ec4) + +### 🔍 Other Changes + +- add commented out cleanup of old CLIs by [@jdx](https://github.com/jdx) in [bb7e022](https://github.com/jdx/mise/commit/bb7e022240c0e7019a595d093a33b414119e975f) + ## [2024.12.23](https://github.com/jdx/mise/compare/v2024.12.22..v2024.12.23) - 2024-12-30 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 9d225bd92..18143be8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.12.23" +version = "2024.12.24" dependencies = [ "base64 0.22.1", "built", diff --git a/Cargo.toml b/Cargo.toml index 23178965e..68b9a5481 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.12.23" +version = "2024.12.24" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 9fcbcf72d..0c9d3492c 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 -2024.12.23 macos-arm64 (a1b2d3e 2024-12-30) +2024.12.24 macos-arm64 (a1b2d3e 2024-12-31) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index fc9139336..f66ddfb1a 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit fc91393364ded9e389918bc8166704363667de98 +Subproject commit f66ddfb1a141a1645bc7a0cf5c68526ecca91a52 diff --git a/completions/_mise b/completions/_mise index 9807a8d77..79c5c9f5f 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_2024_12_23:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_23 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_12_23; + if ( [[ -z "${_usage_spec_mise_2024_12_24:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_24 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_12_24; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_12_23 spec + _store_cache _usage_spec_mise_2024_12_24 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index a432decb5..52a7c18ae 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_12_23:-} ]]; then - _usage_spec_mise_2024_12_23="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_12_24:-} ]]; then + _usage_spec_mise_2024_12_24="$(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_2024_12_23}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2024_12_24}" --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 fd56d001c..affd89961 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null return 1 end -if ! set -q _usage_spec_mise_2024_12_23 - set -g _usage_spec_mise_2024_12_23 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_12_24 + set -g _usage_spec_mise_2024_12_24 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_23" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_24" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index d5371f232..ff86992c9 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.12.23"; + version = "2024.12.24"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index fbc6ca479..1458bdbd6 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: 2024.12.23 +Version: 2024.12.24 Release: 1 URL: https://github.com/jdx/mise/ Group: System