mirror of https://github.com/jdx/mise
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:
parent
599258aa4f
commit
aaee608506
|
@ -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
|
||||
|
|
|
@ -3659,7 +3659,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "mise"
|
||||
version = "2025.3.5"
|
||||
version = "2025.3.6"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"built",
|
||||
|
|
|
@ -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)"]
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 1e6b53f0d45d3ee6e06bc704542b1edabd3b7b33
|
||||
Subproject commit f0a9ae38222895541f8922eb06d72ea49c8cd570
|
|
@ -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[@]}" )))"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "mise";
|
||||
version = "2025.3.5";
|
||||
version = "2025.3.6";
|
||||
|
||||
src = lib.cleanSource ./.;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue