mirror of https://github.com/jdx/mise
chore: release 2025.4.4 (#4845)
### 🧪 Testing - remove kpt test by [@jdx](https://github.com/jdx) in [b9d35ac
](b9d35ac579
)
This commit is contained in:
parent
b9d35ac579
commit
43aa21e447
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2025.4.4](https://github.com/jdx/mise/compare/v2025.4.3..v2025.4.4) - 2025-04-15
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- remove kpt test by [@jdx](https://github.com/jdx) in [b9d35ac](https://github.com/jdx/mise/commit/b9d35ac57936291a0a4629f9c200dfdb500a7efb)
|
||||||
|
|
||||||
## [2025.4.3](https://github.com/jdx/mise/compare/v2025.4.2..v2025.4.3) - 2025-04-15
|
## [2025.4.3](https://github.com/jdx/mise/compare/v2025.4.2..v2025.4.3) - 2025-04-15
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
|
|
@ -3681,7 +3681,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2025.4.3"
|
version = "2025.4.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.22.1",
|
"base64 0.22.1",
|
||||||
"built",
|
"built",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2025.4.3"
|
version = "2025.4.4"
|
||||||
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)"]
|
||||||
|
|
|
@ -40,7 +40,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
|
||||||
```sh-session
|
```sh-session
|
||||||
$ curl https://mise.run | sh
|
$ curl https://mise.run | sh
|
||||||
$ ~/.local/bin/mise --version
|
$ ~/.local/bin/mise --version
|
||||||
2025.4.3 macos-arm64 (a1b2d3e 2025-04-15)
|
2025.4.4 macos-arm64 (a1b2d3e 2025-04-15)
|
||||||
```
|
```
|
||||||
|
|
||||||
Hook mise into your shell (pick the right one for your shell):
|
Hook mise into your shell (pick the right one for your shell):
|
||||||
|
|
|
@ -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_4_3:-}" ]] || _cache_invalid _usage_spec_mise_2025_4_3 ) \
|
if ( [[ -z "${_usage_spec_mise_2025_4_4:-}" ]] || _cache_invalid _usage_spec_mise_2025_4_4 ) \
|
||||||
&& ! _retrieve_cache _usage_spec_mise_2025_4_3;
|
&& ! _retrieve_cache _usage_spec_mise_2025_4_4;
|
||||||
then
|
then
|
||||||
spec="$(mise usage)"
|
spec="$(mise usage)"
|
||||||
_store_cache _usage_spec_mise_2025_4_3 spec
|
_store_cache _usage_spec_mise_2025_4_4 spec
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
||||||
|
|
|
@ -6,14 +6,14 @@ _mise() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z ${_usage_spec_mise_2025_4_3:-} ]]; then
|
if [[ -z ${_usage_spec_mise_2025_4_4:-} ]]; then
|
||||||
_usage_spec_mise_2025_4_3="$(mise usage)"
|
_usage_spec_mise_2025_4_4="$(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_4_3}" --cword="$cword" -- "${words[@]}")"
|
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_4_4}" --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
|
||||||
|
|
|
@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if ! set -q _usage_spec_mise_2025_4_3
|
if ! set -q _usage_spec_mise_2025_4_4
|
||||||
set -g _usage_spec_mise_2025_4_3 (mise usage | string collect)
|
set -g _usage_spec_mise_2025_4_4 (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_4_3" -- (commandline -xpc) (commandline -t))'
|
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_4" -- (commandline -xpc) (commandline -t))'
|
||||||
else
|
else
|
||||||
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_3" -- (commandline -opc) (commandline -t))'
|
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_4" -- (commandline -opc) (commandline -t))'
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "mise";
|
pname = "mise";
|
||||||
version = "2025.4.3";
|
version = "2025.4.4";
|
||||||
|
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
|
|
||||||
|
|
|
@ -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.4.3
|
Version: 2025.4.4
|
||||||
Release: 1
|
Release: 1
|
||||||
URL: https://github.com/jdx/mise/
|
URL: https://github.com/jdx/mise/
|
||||||
Group: System
|
Group: System
|
||||||
|
|
Loading…
Reference in New Issue