chore: release 2025.3.6 (#4659)

### Chore

- unpin aws-cli by [@jdx](https://github.com/jdx) in
[7fabed5](7fabed5c70)
- temporarily disable bootstrap test by [@jdx](https://github.com/jdx)
in
[599258a](599258aa4f)
This commit is contained in:
mise-en-dev 2025-03-18 07:51:15 -05:00 committed by GitHub
parent 599258aa4f
commit aaee608506
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 23 additions and 16 deletions

View File

@ -1,5 +1,12 @@
# Changelog # 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 ## [2025.3.5](https://github.com/jdx/mise/compare/v2025.3.4..v2025.3.5) - 2025-03-18
### 🚀 Features ### 🚀 Features

2
Cargo.lock generated
View File

@ -3659,7 +3659,7 @@ dependencies = [
[[package]] [[package]]
name = "mise" name = "mise"
version = "2025.3.5" version = "2025.3.6"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"built", "built",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mise" name = "mise"
version = "2025.3.5" version = "2025.3.6"
edition = "2024" edition = "2024"
description = "The front-end to your dev env" description = "The front-end to your dev env"
authors = ["Jeff Dickey (@jdx)"] authors = ["Jeff Dickey (@jdx)"]

View File

@ -35,7 +35,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)):
```sh-session ```sh-session
$ curl https://mise.run | sh $ curl https://mise.run | sh
$ ~/.local/bin/mise --version $ ~/.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: or install a specific a version:

@ -1 +1 @@
Subproject commit 1e6b53f0d45d3ee6e06bc704542b1edabd3b7b33 Subproject commit f0a9ae38222895541f8922eb06d72ea49c8cd570

View File

@ -27,11 +27,11 @@ _mise() {
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
fi fi
if ( [[ -z "${_usage_spec_mise_2025_3_5:-}" ]] || _cache_invalid _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_5; && ! _retrieve_cache _usage_spec_mise_2025_3_6;
then then
spec="$(mise usage)" spec="$(mise usage)"
_store_cache _usage_spec_mise_2025_3_5 spec _store_cache _usage_spec_mise_2025_3_6 spec
fi fi
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"

View File

@ -6,14 +6,14 @@ _mise() {
return 1 return 1
fi fi
if [[ -z ${_usage_spec_mise_2025_3_5:-} ]]; then if [[ -z ${_usage_spec_mise_2025_3_6:-} ]]; then
_usage_spec_mise_2025_3_5="$(mise usage)" _usage_spec_mise_2025_3_6="$(mise usage)"
fi fi
local cur prev words cword was_split comp_args local cur prev words cword was_split comp_args
_comp_initialize -n : -- "$@" || return _comp_initialize -n : -- "$@" || return
# shellcheck disable=SC2207 # 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" _comp_ltrim_colon_completions "$cur"
# shellcheck disable=SC2181 # shellcheck disable=SC2181
if [[ $? -ne 0 ]]; then if [[ $? -ne 0 ]]; then

View File

@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null
return 1 return 1
end end
if ! set -q _usage_spec_mise_2025_3_5 if ! set -q _usage_spec_mise_2025_3_6
set -g _usage_spec_mise_2025_3_5 (mise usage | string collect) set -g _usage_spec_mise_2025_3_6 (mise usage | string collect)
end end
set -l tokens set -l tokens
if commandline -x >/dev/null 2>&1 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 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 end

View File

@ -2,7 +2,7 @@
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
pname = "mise"; pname = "mise";
version = "2025.3.5"; version = "2025.3.6";
src = lib.cleanSource ./.; src = lib.cleanSource ./.;

View File

@ -1,6 +1,6 @@
Summary: The front-end to your dev env Summary: The front-end to your dev env
Name: mise Name: mise
Version: 2025.3.5 Version: 2025.3.6
Release: 1 Release: 1
URL: https://github.com/jdx/mise/ URL: https://github.com/jdx/mise/
Group: System Group: System