diff --git a/CHANGELOG.md b/CHANGELOG.md index 85de77a639..a828975f2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2024.11.31](https://github.com/jdx/mise/compare/v2024.11.30..v2024.11.31) - 2024-11-27 + +### 🐛 Bug Fixes + +- use tv.pathname() in `mise ls` by [@jdx](https://github.com/jdx) in [#3217](https://github.com/jdx/mise/pull/3217) + ## [2024.11.30](https://github.com/jdx/mise/compare/v2024.11.29..v2024.11.30) - 2024-11-26 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 2137369302..a0dbb80c5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1857,9 +1857,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.165" +version = "0.2.166" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" +checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36" [[package]] name = "libgit2-sys" @@ -2105,7 +2105,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.30" +version = "2024.11.31" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 81a96b1605..2b84599008 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.30" +version = "2024.11.31" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index de6ee0659c..09d2ff3d71 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.30 macos-arm64 (a1b2d3e 2024-11-26) +2024.11.31 macos-arm64 (a1b2d3e 2024-11-27) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index 55c7874625..1c1d05ffb7 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 55c78746254d5797f4e3eb830f31f2330a608238 +Subproject commit 1c1d05ffb7c192b93b0e7e219518911b9dae8a24 diff --git a/completions/_mise b/completions/_mise index ee0d40afeb..db94aab645 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_30:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_30 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_30; + if ( [[ -z "${_usage_spec_mise_2024_11_31:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_31 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_31; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_30 spec + _store_cache _usage_spec_mise_2024_11_31 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 1272841e19..f2edcdb64e 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,12 +6,12 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_30:-} ]]; then - _usage_spec_mise_2024_11_30="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_31:-} ]]; then + _usage_spec_mise_2024_11_31="$(mise usage)" fi # shellcheck disable=SC2207 - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_30}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_31}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 8c5c190cde..9a4365daa0 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_30 - set -g _usage_spec_mise_2024_11_30 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_31 + set -g _usage_spec_mise_2024_11_31 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_30" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_31" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index d40b1dde78..af9033c2b0 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.30"; + version = "2024.11.31"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 30302e947a..955fa789b6 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.30" +.TH mise 1 "mise 2024.11.31" .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.30 +v2024.11.31 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 0131c688e8..aad09c19c9 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.30 +Version: 2024.11.31 Release: 1 URL: https://github.com/jdx/mise/ Group: System