chore: release 2025.4.1 (#4768)

### 🚀 Features

- **(registry)** added localstack by
[@mnm364](https://github.com/mnm364) in
[#4785](https://github.com/jdx/mise/pull/4785)
- **(registry)** added skeema by [@mnm364](https://github.com/mnm364) in
[#4786](https://github.com/jdx/mise/pull/4786)
- **(registry)** add television by
[@mangkoran](https://github.com/mangkoran) in
[#4778](https://github.com/jdx/mise/pull/4778)

### 🐛 Bug Fixes

- show gh rate limit reset time in local time by
[@someoneinjd](https://github.com/someoneinjd) in
[#4799](https://github.com/jdx/mise/pull/4799)

### 📚 Documentation

- all experimental note for lockfile by
[@zeitlinger](https://github.com/zeitlinger) in
[#4781](https://github.com/jdx/mise/pull/4781)

### Chore

- update deps to fix deny check by [@jdx](https://github.com/jdx) in
[432023b](432023b2cd)
- pin zip to avoid issue with ubi by [@jdx](https://github.com/jdx) in
[315deb4](315deb4e24)

### New Contributors

- @someoneinjd made their first contribution in
[#4799](https://github.com/jdx/mise/pull/4799)
- @mnm364 made their first contribution in
[#4786](https://github.com/jdx/mise/pull/4786)
- @zeitlinger made their first contribution in
[#4781](https://github.com/jdx/mise/pull/4781)
This commit is contained in:
mise-en-dev 2025-04-09 14:59:47 -05:00 committed by GitHub
parent 4fb2e07946
commit 51afc3c455
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 44 additions and 17 deletions

View File

@ -1,6 +1,33 @@
# Changelog
## [2025.4.0](https://github.com/jdx/mise/compare/v2025.3.11..v2025.4.0) - 2025-04-01
## [2025.4.1](https://github.com/jdx/mise/compare/v2025.4.0..v2025.4.1) - 2025-04-09
### 🚀 Features
- **(registry)** added localstack by [@mnm364](https://github.com/mnm364) in [#4785](https://github.com/jdx/mise/pull/4785)
- **(registry)** added skeema by [@mnm364](https://github.com/mnm364) in [#4786](https://github.com/jdx/mise/pull/4786)
- **(registry)** add television by [@mangkoran](https://github.com/mangkoran) in [#4778](https://github.com/jdx/mise/pull/4778)
### 🐛 Bug Fixes
- show gh rate limit reset time in local time by [@someoneinjd](https://github.com/someoneinjd) in [#4799](https://github.com/jdx/mise/pull/4799)
### 📚 Documentation
- all experimental note for lockfile by [@zeitlinger](https://github.com/zeitlinger) in [#4781](https://github.com/jdx/mise/pull/4781)
### Chore
- update deps to fix deny check by [@jdx](https://github.com/jdx) in [432023b](https://github.com/jdx/mise/commit/432023b2cd04d2ea7f590d7b338054944512abd0)
- pin zip to avoid issue with ubi by [@jdx](https://github.com/jdx) in [315deb4](https://github.com/jdx/mise/commit/315deb4e24177408c598d22951adb95f3e841683)
### New Contributors
- @someoneinjd made their first contribution in [#4799](https://github.com/jdx/mise/pull/4799)
- @mnm364 made their first contribution in [#4786](https://github.com/jdx/mise/pull/4786)
- @zeitlinger made their first contribution in [#4781](https://github.com/jdx/mise/pull/4781)
## [2025.4.0](https://github.com/jdx/mise/compare/v2025.3.11..v2025.4.0) - 2025-04-02
### 🐛 Bug Fixes

2
Cargo.lock generated
View File

@ -3673,7 +3673,7 @@ dependencies = [
[[package]]
name = "mise"
version = "2025.4.0"
version = "2025.4.1"
dependencies = [
"base64 0.22.1",
"built",

View File

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

View File

@ -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.0 macos-arm64 (a1b2d3e 2025-04-01)
2025.4.1 macos-arm64 (a1b2d3e 2025-04-09)
```
Hook mise into your shell (pick the right one for your shell):

@ -1 +1 @@
Subproject commit 16de90252804c6907059df7f1bd3a631dbe3394a
Subproject commit edef9ae43f638d4b3515192f60967a2b7cbd6a69

View File

@ -27,11 +27,11 @@ _mise() {
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
fi
if ( [[ -z "${_usage_spec_mise_2025_4_0:-}" ]] || _cache_invalid _usage_spec_mise_2025_4_0 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_4_0;
if ( [[ -z "${_usage_spec_mise_2025_4_1:-}" ]] || _cache_invalid _usage_spec_mise_2025_4_1 ) \
&& ! _retrieve_cache _usage_spec_mise_2025_4_1;
then
spec="$(mise usage)"
_store_cache _usage_spec_mise_2025_4_0 spec
_store_cache _usage_spec_mise_2025_4_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_4_0:-} ]]; then
_usage_spec_mise_2025_4_0="$(mise usage)"
if [[ -z ${_usage_spec_mise_2025_4_1:-} ]]; then
_usage_spec_mise_2025_4_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_4_0}" --cword="$cword" -- "${words[@]}")"
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_4_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_4_0
set -g _usage_spec_mise_2025_4_0 (mise usage | string collect)
if ! set -q _usage_spec_mise_2025_4_1
set -g _usage_spec_mise_2025_4_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_4_0" -- (commandline -xpc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_1" -- (commandline -xpc) (commandline -t))'
else
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_0" -- (commandline -opc) (commandline -t))'
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_4_1" -- (commandline -opc) (commandline -t))'
end

View File

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

View File

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