From aaee608506795c23292c1f087cf894f89cf2094f Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Tue, 18 Mar 2025 07:51:15 -0500 Subject: [PATCH] chore: release 2025.3.6 (#4659) ### Chore - unpin aws-cli by [@jdx](https://github.com/jdx) in [7fabed5](https://github.com/jdx/mise/commit/7fabed5c70fccfe095647c7b2220965ca2f1c07d) - temporarily disable bootstrap test by [@jdx](https://github.com/jdx) in [599258a](https://github.com/jdx/mise/commit/599258aa4f5c0ab0b5581740b0c9eec17f1c7318) --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- aqua-registry | 2 +- completions/_mise | 6 +++--- completions/mise.bash | 6 +++--- completions/mise.fish | 8 ++++---- default.nix | 2 +- packaging/rpm/mise.spec | 2 +- 10 files changed, 23 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 128d856b4..2da07d0af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2025.3.6](https://github.com/jdx/mise/compare/v2025.3.5..v2025.3.6) - 2025-03-18 + +### Chore + +- unpin aws-cli by [@jdx](https://github.com/jdx) in [7fabed5](https://github.com/jdx/mise/commit/7fabed5c70fccfe095647c7b2220965ca2f1c07d) +- temporarily disable bootstrap test by [@jdx](https://github.com/jdx) in [599258a](https://github.com/jdx/mise/commit/599258aa4f5c0ab0b5581740b0c9eec17f1c7318) + ## [2025.3.5](https://github.com/jdx/mise/compare/v2025.3.4..v2025.3.5) - 2025-03-18 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index fe981a34a..fee79615b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3659,7 +3659,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.3.5" +version = "2025.3.6" dependencies = [ "base64 0.22.1", "built", diff --git a/Cargo.toml b/Cargo.toml index 8b4c06cd9..ee2f77a7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2025.3.5" +version = "2025.3.6" edition = "2024" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 28ce981eb..602f3bad4 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.3.5 macos-arm64 (a1b2d3e 2025-03-18) +2025.3.6 macos-arm64 (a1b2d3e 2025-03-18) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index 1e6b53f0d..f0a9ae382 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 1e6b53f0d45d3ee6e06bc704542b1edabd3b7b33 +Subproject commit f0a9ae38222895541f8922eb06d72ea49c8cd570 diff --git a/completions/_mise b/completions/_mise index 1eb21bedf..9f2c34850 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_3_5:-}" ]] || _cache_invalid _usage_spec_mise_2025_3_5 ) \ - && ! _retrieve_cache _usage_spec_mise_2025_3_5; + if ( [[ -z "${_usage_spec_mise_2025_3_6:-}" ]] || _cache_invalid _usage_spec_mise_2025_3_6 ) \ + && ! _retrieve_cache _usage_spec_mise_2025_3_6; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2025_3_5 spec + _store_cache _usage_spec_mise_2025_3_6 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 204ec9a2f..2fd4fc29a 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2025_3_5:-} ]]; then - _usage_spec_mise_2025_3_5="$(mise usage)" + if [[ -z ${_usage_spec_mise_2025_3_6:-} ]]; then + _usage_spec_mise_2025_3_6="$(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_3_5}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_3_6}" --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 09308e5cf..5160a9267 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_3_5 - set -g _usage_spec_mise_2025_3_5 (mise usage | string collect) +if ! set -q _usage_spec_mise_2025_3_6 + set -g _usage_spec_mise_2025_3_6 (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_3_5" -- (commandline -xpc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_6" -- (commandline -xpc) (commandline -t))' else - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_5" -- (commandline -opc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_6" -- (commandline -opc) (commandline -t))' end diff --git a/default.nix b/default.nix index 07a866786..4b908bed6 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.3.5"; + version = "2025.3.6"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 90b68d482..999d4a07c 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.3.5 +Version: 2025.3.6 Release: 1 URL: https://github.com/jdx/mise/ Group: System