mirror of https://github.com/jdx/mise
chore: release 2024.11.36 (#3285)
This commit is contained in:
parent
81507327e7
commit
0461143046
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2024.11.36](https://github.com/jdx/mise/compare/v2024.11.35..v2024.11.36) - 2024-11-29
|
||||||
|
|
||||||
|
### 🔍 Other Changes
|
||||||
|
|
||||||
|
- mise i by [@jdx](https://github.com/jdx) in [8150732](https://github.com/jdx/mise/commit/81507327e7f1c9f2137b3dadcf35a8245d43a8ba)
|
||||||
|
|
||||||
## [2024.11.35](https://github.com/jdx/mise/compare/v2024.11.34..v2024.11.35) - 2024-11-29
|
## [2024.11.35](https://github.com/jdx/mise/compare/v2024.11.34..v2024.11.35) - 2024-11-29
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
|
|
@ -2077,7 +2077,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2024.11.35"
|
version = "2024.11.36"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"built",
|
"built",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2024.11.35"
|
version = "2024.11.36"
|
||||||
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)"]
|
||||||
|
|
|
@ -35,7 +35,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.35 macos-arm64 (a1b2d3e 2024-11-29)
|
2024.11.36 macos-arm64 (a1b2d3e 2024-11-29)
|
||||||
```
|
```
|
||||||
|
|
||||||
or install a specific a version:
|
or install a specific a version:
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ceef34ada6b2bf138ae2c6e5481a795318d3f85d
|
Subproject commit 7cfad612604449cb2b2de3e20dd340075747339d
|
|
@ -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_35:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_35 ) \
|
if ( [[ -z "${_usage_spec_mise_2024_11_36:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_36 ) \
|
||||||
&& ! _retrieve_cache _usage_spec_mise_2024_11_35;
|
&& ! _retrieve_cache _usage_spec_mise_2024_11_36;
|
||||||
then
|
then
|
||||||
spec="$(mise usage)"
|
spec="$(mise usage)"
|
||||||
_store_cache _usage_spec_mise_2024_11_35 spec
|
_store_cache _usage_spec_mise_2024_11_36 spec
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"
|
||||||
|
|
|
@ -6,12 +6,12 @@ _mise() {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z ${_usage_spec_mise_2024_11_35:-} ]]; then
|
if [[ -z ${_usage_spec_mise_2024_11_36:-} ]]; then
|
||||||
_usage_spec_mise_2024_11_35="$(mise usage)"
|
_usage_spec_mise_2024_11_36="$(mise usage)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# shellcheck disable=SC2207
|
# shellcheck disable=SC2207
|
||||||
COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_35}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) )
|
COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_36}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) )
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
unset COMPREPLY
|
unset COMPREPLY
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if ! set -q _usage_spec_mise_2024_11_35
|
if ! set -q _usage_spec_mise_2024_11_36
|
||||||
set -g _usage_spec_mise_2024_11_35 (mise usage | string collect)
|
set -g _usage_spec_mise_2024_11_36 (mise usage | string collect)
|
||||||
end
|
end
|
||||||
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_35" -- (commandline -cop) (commandline -t))'
|
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_36" -- (commandline -cop) (commandline -t))'
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "mise";
|
pname = "mise";
|
||||||
version = "2024.11.35";
|
version = "2024.11.36";
|
||||||
|
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
|
|
||||||
|
|
|
@ -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.35"
|
.TH mise 1 "mise 2024.11.36"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mise \- The front\-end to your dev env
|
mise \- The front\-end to your dev env
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -210,6 +210,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.35
|
v2024.11.36
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
Jeff Dickey <@jdx>
|
Jeff Dickey <@jdx>
|
||||||
|
|
|
@ -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.35
|
Version: 2024.11.36
|
||||||
Release: 1
|
Release: 1
|
||||||
URL: https://github.com/jdx/mise/
|
URL: https://github.com/jdx/mise/
|
||||||
Group: System
|
Group: System
|
||||||
|
|
Loading…
Reference in New Issue