chore: release 2024.11.28 (#3171)

This commit is contained in:
mise-en-dev 2024-11-24 09:39:31 -06:00 committed by GitHub
parent 7480254d9a
commit f88950eb5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 41 additions and 18 deletions

View File

@ -1,3 +1,26 @@
# Changelog # Changelog
## [2024.11.28] - 2024-11-24
### 🚀 Features
- migrate more tools away from asdf by [@jdx](https://github.com/jdx) in [#3170](https://github.com/jdx/mise/pull/3170)
- auto-install tools on `mise run` by [@jdx](https://github.com/jdx) in [#3181](https://github.com/jdx/mise/pull/3181)
- move more tools away from asdf by [@jdx](https://github.com/jdx) in [#3179](https://github.com/jdx/mise/pull/3179)
### 🐛 Bug Fixes
- allow passing integers to task env by [@jdx](https://github.com/jdx) in [#3177](https://github.com/jdx/mise/pull/3177)
- remove __MISE_WATCH,__MISE_DIFF env vars on `mise deactivate` by [@jdx](https://github.com/jdx) in [#3178](https://github.com/jdx/mise/pull/3178)
### 📚 Documentation
- **(security)** added information about checksums/cosign/slsa verification by [@jdx](https://github.com/jdx) in [1faef6e](https://github.com/jdx/mise/commit/1faef6ecbb48692955f4ce424d77d03472aa4617)
- **(security)** added release gpg key by [@jdx](https://github.com/jdx) in [8f5dfd6](https://github.com/jdx/mise/commit/8f5dfd6dd2903c55fd792aeecd8ec97ef9f7f7ba)
- typos by [@jdx](https://github.com/jdx) in [#3173](https://github.com/jdx/mise/pull/3173)
### 🔍 Other Changes
- clean up CHANGELOG by [@jdx](https://github.com/jdx) in [8ec0ca2](https://github.com/jdx/mise/commit/8ec0ca20fce57d07d769209fd9043a129daa86f1)
<!-- generated by git-cliff --> <!-- generated by git-cliff -->

6
Cargo.lock generated
View File

@ -2018,7 +2018,7 @@ dependencies = [
[[package]] [[package]]
name = "mise" name = "mise"
version = "2024.11.27" version = "2024.11.28"
dependencies = [ dependencies = [
"assert_cmd", "assert_cmd",
"base64", "base64",
@ -2560,9 +2560,9 @@ checksum = "d43467300237085a4f9e864b937cf0bc012cef7740be12be1a48b10d2c8a3701"
[[package]] [[package]]
name = "portable-atomic" name = "portable-atomic"
version = "1.9.0" version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
[[package]] [[package]]
name = "powerfmt" name = "powerfmt"

View File

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

View File

@ -36,7 +36,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)):
```sh-session ```sh-session
$ curl https://mise.run | sh $ curl https://mise.run | sh
$ ~/.local/bin/mise --version $ ~/.local/bin/mise --version
2024.11.27 macos-arm64 (a1b2d3e 2024-11-23) 2024.11.28 macos-arm64 (a1b2d3e 2024-11-24)
``` ```
or install a specific a version: or install a specific a version:

View File

@ -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_2024_11_27:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_27 ) \ if ( [[ -z "${_usage_spec_mise_2024_11_28:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_28 ) \
&& ! _retrieve_cache _usage_spec_mise_2024_11_27; && ! _retrieve_cache _usage_spec_mise_2024_11_28;
then then
spec="$(mise usage)" spec="$(mise usage)"
_store_cache _usage_spec_mise_2024_11_27 spec _store_cache _usage_spec_mise_2024_11_28 spec
fi fi
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"

View File

@ -6,12 +6,12 @@ _mise() {
return 1 return 1
fi fi
if [[ -z ${_usage_spec_mise_2024_11_27:-} ]]; then if [[ -z ${_usage_spec_mise_2024_11_28:-} ]]; then
_usage_spec_mise_2024_11_27="$(mise usage)" _usage_spec_mise_2024_11_28="$(mise usage)"
fi fi
# shellcheck disable=SC2207 # shellcheck disable=SC2207
COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_27}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_28}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) )
if [[ $? -ne 0 ]]; then if [[ $? -ne 0 ]]; then
unset COMPREPLY unset COMPREPLY
fi fi

View File

@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null
return 1 return 1
end end
if ! set -q _usage_spec_mise_2024_11_27 if ! set -q _usage_spec_mise_2024_11_28
set -g _usage_spec_mise_2024_11_27 (mise usage | string collect) set -g _usage_spec_mise_2024_11_28 (mise usage | string collect)
end end
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_27" -- (commandline -cop) (commandline -t))' complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_28" -- (commandline -cop) (commandline -t))'

View File

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

View File

@ -1,6 +1,6 @@
.ie \n(.g .ds Aq \(aq .ie \n(.g .ds Aq \(aq
.el .ds Aq ' .el .ds Aq '
.TH mise 1 "mise 2024.11.27" .TH mise 1 "mise 2024.11.28"
.SH NAME .SH NAME
mise \- The front\-end to your dev env mise \- The front\-end to your dev env
.SH SYNOPSIS .SH SYNOPSIS
@ -192,6 +192,6 @@ Examples:
$ mise settings Show settings in use $ mise settings Show settings in use
$ mise settings color=0 Disable color by modifying global config file $ mise settings color=0 Disable color by modifying global config file
.SH VERSION .SH VERSION
v2024.11.27 v2024.11.28
.SH AUTHORS .SH AUTHORS
Jeff Dickey <@jdx> Jeff Dickey <@jdx>

View File

@ -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: 2024.11.27 Version: 2024.11.28
Release: 1 Release: 1
URL: https://github.com/jdx/mise/ URL: https://github.com/jdx/mise/
Group: System Group: System