chore: release 2025.1.15 (#4208)

This commit is contained in:
mise-en-dev 2025-01-25 19:57:43 -06:00 committed by GitHub
parent fd67a351ea
commit 0a373893c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 48 additions and 16 deletions

View File

@ -1,5 +1,37 @@
# Changelog
## [2025.1.15](https://github.com/jdx/mise/compare/v2025.1.14..v2025.1.15) - 2025-01-26
### 🚀 Features
- add http cache by [@acesyde](https://github.com/acesyde) in [#4160](https://github.com/jdx/mise/pull/4160)
- expose `test-tool` command by [@jdx](https://github.com/jdx) in [#4224](https://github.com/jdx/mise/pull/4224)
### 🐛 Bug Fixes
- elixir installation failed by [@roele](https://github.com/roele) in [#4144](https://github.com/jdx/mise/pull/4144)
- re-run tasks when files removed or permissions change by [@jdx](https://github.com/jdx) in [#4223](https://github.com/jdx/mise/pull/4223)
### 🚜 Refactor
- use builder pattern by [@acesyde](https://github.com/acesyde) in [#4220](https://github.com/jdx/mise/pull/4220)
### 📚 Documentation
- **(how-i-use-mise)** switch to discussion by [@risu729](https://github.com/risu729) in [#4225](https://github.com/jdx/mise/pull/4225)
- add hint about environment variable parsing by [@roele](https://github.com/roele) in [#4219](https://github.com/jdx/mise/pull/4219)
### Chore
- added vscode workspace by [@jdx](https://github.com/jdx) in [a0d181f](https://github.com/jdx/mise/commit/a0d181f8d60270d09d06156ebc500a2fa85f74db)
- switch from git2 to gix by [@jdx](https://github.com/jdx) in [#4226](https://github.com/jdx/mise/pull/4226)
- remove git2 from built by [@jdx](https://github.com/jdx) in [#4227](https://github.com/jdx/mise/pull/4227)
- use mise-plugins/mise-jib by [@jdx](https://github.com/jdx) in [#4228](https://github.com/jdx/mise/pull/4228)
### New Contributors
- @vgnh made their first contribution in [#4216](https://github.com/jdx/mise/pull/4216)
## [2025.1.14](https://github.com/jdx/mise/compare/v2025.1.13..v2025.1.14) - 2025-01-24
### 🚀 Features

2
Cargo.lock generated
View File

@ -3625,7 +3625,7 @@ dependencies = [
[[package]]
name = "mise"
version = "2025.1.14"
version = "2025.1.15"
dependencies = [
"base64 0.22.1",
"built",

View File

@ -1,6 +1,6 @@
[package]
name = "mise"
version = "2025.1.14"
version = "2025.1.15"
edition = "2021"
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.1.14 macos-arm64 (a1b2d3e 2025-01-24)
2025.1.15 macos-arm64 (a1b2d3e 2025-01-26)
```
or install a specific a version:

@ -1 +1 @@
Subproject commit 0f03159c30ed88d00c4b75df675afcb159a41aaf
Subproject commit bd04b04e9900b191299a411e75776f4253e12d51

View File

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

View File

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

View File

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