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
|
||||
|
||||
## [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
|
||||
|
||||
### 🚀 Features
|
||||
|
|
|
@ -3681,7 +3681,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "mise"
|
||||
version = "2025.4.3"
|
||||
version = "2025.4.4"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"built",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mise"
|
||||
version = "2025.4.3"
|
||||
version = "2025.4.4"
|
||||
edition = "2024"
|
||||
description = "The front-end to your dev env"
|
||||
authors = ["Jeff Dickey (@jdx)"]
|
||||
|
|
|
@ -40,7 +40,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
|
|||
```sh-session
|
||||
$ curl https://mise.run | sh
|
||||
$ ~/.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):
|
||||
|
|
|
@ -27,11 +27,11 @@ _mise() {
|
|||
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
|
||||
fi
|
||||
|
||||
if ( [[ -z "${_usage_spec_mise_2025_4_3:-}" ]] || _cache_invalid _usage_spec_mise_2025_4_3 ) \
|
||||
&& ! _retrieve_cache _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_4;
|
||||
then
|
||||
spec="$(mise usage)"
|
||||
_store_cache _usage_spec_mise_2025_4_3 spec
|
||||
_store_cache _usage_spec_mise_2025_4_4 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_4_3:-} ]]; then
|
||||
_usage_spec_mise_2025_4_3="$(mise usage)"
|
||||
if [[ -z ${_usage_spec_mise_2025_4_4:-} ]]; then
|
||||
_usage_spec_mise_2025_4_4="$(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_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"
|
||||
# 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_4_3
|
||||
set -g _usage_spec_mise_2025_4_3 (mise usage | string collect)
|
||||
if ! set -q _usage_spec_mise_2025_4_4
|
||||
set -g _usage_spec_mise_2025_4_4 (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_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
|
||||
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
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "mise";
|
||||
version = "2025.4.3";
|
||||
version = "2025.4.4";
|
||||
|
||||
src = lib.cleanSource ./.;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: The front-end to your dev env
|
||||
Name: mise
|
||||
Version: 2025.4.3
|
||||
Version: 2025.4.4
|
||||
Release: 1
|
||||
URL: https://github.com/jdx/mise/
|
||||
Group: System
|
||||
|
|
Loading…
Reference in New Issue