chore: release 2025.3.1 (#4564)

### 🚀 Features

- **(registry)** added sampler by
[@tony-sol](https://github.com/tony-sol) in
[#4577](https://github.com/jdx/mise/pull/4577)
- add support for components property in rust-toolchain.toml by
[@roele](https://github.com/roele) in
[#4579](https://github.com/jdx/mise/pull/4579)
- add --local flag for ls by [@tony-sol](https://github.com/tony-sol) in
[#4565](https://github.com/jdx/mise/pull/4565)

### 🐛 Bug Fixes

- favor aqua backend over asdf by [@dud225](https://github.com/dud225)
in [#4558](https://github.com/jdx/mise/pull/4558)

### 📚 Documentation

- continuous-integration.md: fix gitlab caching example by
[@nafg](https://github.com/nafg) in
[#4576](https://github.com/jdx/mise/pull/4576)

### Chore

- edition 2024 by [@jdx](https://github.com/jdx) in
[#4541](https://github.com/jdx/mise/pull/4541)

### New Contributors

- @nafg made their first contribution in
[#4576](https://github.com/jdx/mise/pull/4576)
- @dud225 made their first contribution in
[#4558](https://github.com/jdx/mise/pull/4558)
This commit is contained in:
mise-en-dev 2025-03-06 06:18:53 -06:00 committed by GitHub
parent 8cdea397dc
commit 9dc0f0c795
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 216 additions and 192 deletions

View File

@ -1,5 +1,30 @@
# Changelog
## [2025.3.1](https://github.com/jdx/mise/compare/v2025.3.0..v2025.3.1) - 2025-03-06
### 🚀 Features
- **(registry)** added sampler by [@tony-sol](https://github.com/tony-sol) in [#4577](https://github.com/jdx/mise/pull/4577)
- add support for components property in rust-toolchain.toml by [@roele](https://github.com/roele) in [#4579](https://github.com/jdx/mise/pull/4579)
- add --local flag for ls by [@tony-sol](https://github.com/tony-sol) in [#4565](https://github.com/jdx/mise/pull/4565)
### 🐛 Bug Fixes
- favor aqua backend over asdf by [@dud225](https://github.com/dud225) in [#4558](https://github.com/jdx/mise/pull/4558)
### 📚 Documentation
- continuous-integration.md: fix gitlab caching example by [@nafg](https://github.com/nafg) in [#4576](https://github.com/jdx/mise/pull/4576)
### Chore
- edition 2024 by [@jdx](https://github.com/jdx) in [#4541](https://github.com/jdx/mise/pull/4541)
### New Contributors
- @nafg made their first contribution in [#4576](https://github.com/jdx/mise/pull/4576)
- @dud225 made their first contribution in [#4558](https://github.com/jdx/mise/pull/4558)
## [2025.3.0](https://github.com/jdx/mise/compare/v2025.2.9..v2025.3.0) - 2025-03-01
### 🚀 Features

353
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -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.0 macos-arm64 (a1b2d3e 2025-03-01)
2025.3.1 macos-arm64 (a1b2d3e 2025-03-06)
```
or install a specific a version:

@ -1 +1 @@
Subproject commit 0af3671810bb30fbf3f83362f87c12afaa51a982
Subproject commit 9be574ffbc4e58a3f89c5481295383ab8e72bee8

View File

@ -27,11 +27,11 @@ _mise() {
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
fi
if ( [[ -z "${_usage_spec_mise_2025_3_0:-}" ]] || _cache_invalid _usage_spec_mise_2025_3_0 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_3_0;
if ( [[ -z "${_usage_spec_mise_2025_3_1:-}" ]] || _cache_invalid _usage_spec_mise_2025_3_1 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_3_1;
then
spec="$(mise usage)"
_store_cache _usage_spec_mise_2025_3_0 spec
_store_cache _usage_spec_mise_2025_3_1 spec
fi
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"

View File

@ -6,14 +6,14 @@ _mise() {
return 1
fi
if [[ -z ${_usage_spec_mise_2025_3_0:-} ]]; then
_usage_spec_mise_2025_3_0="$(mise usage)"
if [[ -z ${_usage_spec_mise_2025_3_1:-} ]]; then
_usage_spec_mise_2025_3_1="$(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_0}" --cword="$cword" -- "${words[@]}")"
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_3_1}" --cword="$cword" -- "${words[@]}")"
_comp_ltrim_colon_completions "$cur"
# shellcheck disable=SC2181
if [[ $? -ne 0 ]]; then

View File

@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null
return 1
end
if ! set -q _usage_spec_mise_2025_3_0
set -g _usage_spec_mise_2025_3_0 (mise usage | string collect)
if ! set -q _usage_spec_mise_2025_3_1
set -g _usage_spec_mise_2025_3_1 (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_0" -- (commandline -xpc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_1" -- (commandline -xpc) (commandline -t))'
else
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_0" -- (commandline -opc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_3_1" -- (commandline -opc) (commandline -t))'
end

View File

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

View File

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