diff --git a/CHANGELOG.md b/CHANGELOG.md index 7594ccd98..075f92cfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # 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 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index bbc0ec0f0..f9a9ae200 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2077,7 +2077,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.35" +version = "2024.11.36" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index 440afde78..87abe9653 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.35" +version = "2024.11.36" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 0dcb7a1b1..ae49ccf07 100644 --- a/README.md +++ b/README.md @@ -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.11.35 macos-arm64 (a1b2d3e 2024-11-29) +2024.11.36 macos-arm64 (a1b2d3e 2024-11-29) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index ceef34ada..7cfad6126 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit ceef34ada6b2bf138ae2c6e5481a795318d3f85d +Subproject commit 7cfad612604449cb2b2de3e20dd340075747339d diff --git a/completions/_mise b/completions/_mise index 3e73f6640..df3dfd697 100644 --- a/completions/_mise +++ b/completions/_mise @@ -27,11 +27,11 @@ _mise() { zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy fi - if ( [[ -z "${_usage_spec_mise_2024_11_35:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_35 ) \ - && ! _retrieve_cache _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_36; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_35 spec + _store_cache _usage_spec_mise_2024_11_36 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index ab88a9ced..df8213076 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,12 +6,12 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_35:-} ]]; then - _usage_spec_mise_2024_11_35="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_36:-} ]]; then + _usage_spec_mise_2024_11_36="$(mise usage)" fi # 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 unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 09b318638..f8e8d5013 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null return 1 end -if ! set -q _usage_spec_mise_2024_11_35 - set -g _usage_spec_mise_2024_11_35 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_36 + set -g _usage_spec_mise_2024_11_36 (mise usage | string collect) 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))' diff --git a/default.nix b/default.nix index e0998e837..80593e491 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.35"; + version = "2024.11.36"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index c5965049f..0df133487 100644 --- a/man/man1/mise.1 +++ b/man/man1/mise.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH mise 1 "mise 2024.11.35" +.TH mise 1 "mise 2024.11.36" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -210,6 +210,6 @@ Examples: $ mise settings Show settings in use $ mise settings color=0 Disable color by modifying global config file .SH VERSION -v2024.11.35 +v2024.11.36 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 9fad7c4ce..27de91bf6 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2024.11.35 +Version: 2024.11.36 Release: 1 URL: https://github.com/jdx/mise/ Group: System