mirror of https://github.com/jdx/mise
chore: release 2024.11.28 (#3171)
This commit is contained in:
parent
7480254d9a
commit
f88950eb5d
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,3 +1,26 @@
|
|||
# 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 -->
|
||||
|
|
|
@ -2018,7 +2018,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "mise"
|
||||
version = "2024.11.27"
|
||||
version = "2024.11.28"
|
||||
dependencies = [
|
||||
"assert_cmd",
|
||||
"base64",
|
||||
|
@ -2560,9 +2560,9 @@ checksum = "d43467300237085a4f9e864b937cf0bc012cef7740be12be1a48b10d2c8a3701"
|
|||
|
||||
[[package]]
|
||||
name = "portable-atomic"
|
||||
version = "1.9.0"
|
||||
version = "1.10.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
||||
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
||||
|
||||
[[package]]
|
||||
name = "powerfmt"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mise"
|
||||
version = "2024.11.27"
|
||||
version = "2024.11.28"
|
||||
edition = "2021"
|
||||
description = "The front-end to your dev env"
|
||||
authors = ["Jeff Dickey (@jdx)"]
|
||||
|
|
|
@ -36,7 +36,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)):
|
|||
```sh-session
|
||||
$ curl https://mise.run | sh
|
||||
$ ~/.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:
|
||||
|
|
|
@ -27,11 +27,11 @@ _mise() {
|
|||
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
|
||||
fi
|
||||
|
||||
if ( [[ -z "${_usage_spec_mise_2024_11_27:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_27 ) \
|
||||
&& ! _retrieve_cache _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_28;
|
||||
then
|
||||
spec="$(mise usage)"
|
||||
_store_cache _usage_spec_mise_2024_11_27 spec
|
||||
_store_cache _usage_spec_mise_2024_11_28 spec
|
||||
fi
|
||||
|
||||
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
||||
|
|
|
@ -6,12 +6,12 @@ _mise() {
|
|||
return 1
|
||||
fi
|
||||
|
||||
if [[ -z ${_usage_spec_mise_2024_11_27:-} ]]; then
|
||||
_usage_spec_mise_2024_11_27="$(mise usage)"
|
||||
if [[ -z ${_usage_spec_mise_2024_11_28:-} ]]; then
|
||||
_usage_spec_mise_2024_11_28="$(mise usage)"
|
||||
fi
|
||||
|
||||
# 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
|
||||
unset COMPREPLY
|
||||
fi
|
||||
|
|
|
@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null
|
|||
return 1
|
||||
end
|
||||
|
||||
if ! set -q _usage_spec_mise_2024_11_27
|
||||
set -g _usage_spec_mise_2024_11_27 (mise usage | string collect)
|
||||
if ! set -q _usage_spec_mise_2024_11_28
|
||||
set -g _usage_spec_mise_2024_11_28 (mise usage | string collect)
|
||||
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))'
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "mise";
|
||||
version = "2024.11.27";
|
||||
version = "2024.11.28";
|
||||
|
||||
src = lib.cleanSource ./.;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.ie \n(.g .ds Aq \(aq
|
||||
.el .ds Aq '
|
||||
.TH mise 1 "mise 2024.11.27"
|
||||
.TH mise 1 "mise 2024.11.28"
|
||||
.SH NAME
|
||||
mise \- The front\-end to your dev env
|
||||
.SH SYNOPSIS
|
||||
|
@ -192,6 +192,6 @@ Examples:
|
|||
$ mise settings Show settings in use
|
||||
$ mise settings color=0 Disable color by modifying global config file
|
||||
.SH VERSION
|
||||
v2024.11.27
|
||||
v2024.11.28
|
||||
.SH AUTHORS
|
||||
Jeff Dickey <@jdx>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: The front-end to your dev env
|
||||
Name: mise
|
||||
Version: 2024.11.27
|
||||
Version: 2024.11.28
|
||||
Release: 1
|
||||
URL: https://github.com/jdx/mise/
|
||||
Group: System
|
||||
|
|
Loading…
Reference in New Issue