mirror of https://github.com/jdx/mise
chore: release 2024.12.24 (#3887)
This commit is contained in:
parent
cc88dca50e
commit
b04359f54a
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## [2024.12.24](https://github.com/jdx/mise/compare/v2024.12.23..v2024.12.24) - 2024-12-31
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- switch back to asdf for gradle by [@jdx](https://github.com/jdx) in [cc88dca](https://github.com/jdx/mise/commit/cc88dca50e8e0dac94dbb83d0ce1ebcfc38a1ec4)
|
||||
|
||||
### 🔍 Other Changes
|
||||
|
||||
- add commented out cleanup of old CLIs by [@jdx](https://github.com/jdx) in [bb7e022](https://github.com/jdx/mise/commit/bb7e022240c0e7019a595d093a33b414119e975f)
|
||||
|
||||
## [2024.12.23](https://github.com/jdx/mise/compare/v2024.12.22..v2024.12.23) - 2024-12-30
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
|
|
@ -2614,7 +2614,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "mise"
|
||||
version = "2024.12.23"
|
||||
version = "2024.12.24"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"built",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mise"
|
||||
version = "2024.12.23"
|
||||
version = "2024.12.24"
|
||||
edition = "2021"
|
||||
description = "The front-end to your dev env"
|
||||
authors = ["Jeff Dickey (@jdx)"]
|
||||
|
|
|
@ -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
|
||||
2024.12.23 macos-arm64 (a1b2d3e 2024-12-30)
|
||||
2024.12.24 macos-arm64 (a1b2d3e 2024-12-31)
|
||||
```
|
||||
|
||||
or install a specific a version:
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit fc91393364ded9e389918bc8166704363667de98
|
||||
Subproject commit f66ddfb1a141a1645bc7a0cf5c68526ecca91a52
|
|
@ -27,11 +27,11 @@ _mise() {
|
|||
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
|
||||
fi
|
||||
|
||||
if ( [[ -z "${_usage_spec_mise_2024_12_23:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_23 ) \
|
||||
&& ! _retrieve_cache _usage_spec_mise_2024_12_23;
|
||||
if ( [[ -z "${_usage_spec_mise_2024_12_24:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_24 ) \
|
||||
&& ! _retrieve_cache _usage_spec_mise_2024_12_24;
|
||||
then
|
||||
spec="$(mise usage)"
|
||||
_store_cache _usage_spec_mise_2024_12_23 spec
|
||||
_store_cache _usage_spec_mise_2024_12_24 spec
|
||||
fi
|
||||
|
||||
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
||||
|
|
|
@ -6,14 +6,14 @@ _mise() {
|
|||
return 1
|
||||
fi
|
||||
|
||||
if [[ -z ${_usage_spec_mise_2024_12_23:-} ]]; then
|
||||
_usage_spec_mise_2024_12_23="$(mise usage)"
|
||||
if [[ -z ${_usage_spec_mise_2024_12_24:-} ]]; then
|
||||
_usage_spec_mise_2024_12_24="$(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_2024_12_23}" --cword="$cword" -- "${words[@]}")"
|
||||
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2024_12_24}" --cword="$cword" -- "${words[@]}")"
|
||||
_comp_ltrim_colon_completions "$cur"
|
||||
# shellcheck disable=SC2181
|
||||
if [[ $? -ne 0 ]]; then
|
||||
|
|
|
@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null
|
|||
return 1
|
||||
end
|
||||
|
||||
if ! set -q _usage_spec_mise_2024_12_23
|
||||
set -g _usage_spec_mise_2024_12_23 (mise usage | string collect)
|
||||
if ! set -q _usage_spec_mise_2024_12_24
|
||||
set -g _usage_spec_mise_2024_12_24 (mise usage | string collect)
|
||||
end
|
||||
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_23" -- (commandline -cop) (commandline -t))'
|
||||
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_24" -- (commandline -cop) (commandline -t))'
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "mise";
|
||||
version = "2024.12.23";
|
||||
version = "2024.12.24";
|
||||
|
||||
src = lib.cleanSource ./.;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: The front-end to your dev env
|
||||
Name: mise
|
||||
Version: 2024.12.23
|
||||
Version: 2024.12.24
|
||||
Release: 1
|
||||
URL: https://github.com/jdx/mise/
|
||||
Group: System
|
||||
|
|
Loading…
Reference in New Issue