diff --git a/Cargo.lock b/Cargo.lock index 7cb6e12939..d978bcf4f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2018,7 +2018,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.23" +version = "2024.11.24" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 0f3d58da00..30cdea8865 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.23" +version = "2024.11.24" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 7bdf79d030..e33994dc95 100644 --- a/README.md +++ b/README.md @@ -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.23 macos-arm64 (a1b2d3e 2024-11-21) +2024.11.24 macos-arm64 (a1b2d3e 2024-11-22) ``` or install a specific a version: diff --git a/completions/_mise b/completions/_mise index 2736327ad7..ead4169126 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_23:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_23 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_23; + if ( [[ -z "${_usage_spec_mise_2024_11_24:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_24 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_24; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_23 spec + _store_cache _usage_spec_mise_2024_11_24 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 94f49c562b..a10cd57e7f 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_23:-} ]]; then - _usage_spec_mise_2024_11_23="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_24:-} ]]; then + _usage_spec_mise_2024_11_24="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_23}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_24}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 9cba21083e..4d3cdec00a 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_23 - set -g _usage_spec_mise_2024_11_23 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_24 + set -g _usage_spec_mise_2024_11_24 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_23" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_24" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index adf9dfd970..6b0da83da4 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.23"; + version = "2024.11.24"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index d58a89e106..ac09db4b77 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.23" +.TH mise 1 "mise 2024.11.24" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -189,6 +189,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.11.23 +v2024.11.24 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 1cbf2b6314..dc96f33850 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.23 +Version: 2024.11.24 Release: 1 URL: https://github.com/jdx/mise/ Group: System