diff --git a/CHANGELOG.md b/CHANGELOG.md index 0302bd573..7594ccd98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [2024.11.35](https://github.com/jdx/mise/compare/v2024.11.34..v2024.11.35) - 2024-11-29 + +### ๐Ÿš€ Features + +- migrate more tools away from asdf by [@jdx](https://github.com/jdx) in [#3279](https://github.com/jdx/mise/pull/3279) + +### ๐Ÿ› Bug Fixes + +- remove conflicting MISE_SHELL setting by [@jdx](https://github.com/jdx) in [#3284](https://github.com/jdx/mise/pull/3284) + +### ๐Ÿšœ Refactor + +- simplify __MISE_WATCH variable to only contain the most recent timestamp by [@jdx](https://github.com/jdx) in [#3282](https://github.com/jdx/mise/pull/3282) + +### ๐Ÿงช Testing + +- remove unnecessary cargo-binstall test by [@jdx](https://github.com/jdx) in [0a4da7a](https://github.com/jdx/mise/commit/0a4da7a023b1cb969b732afd3ad4b3cf02c42530) + +### ๐Ÿ” Other Changes + +- dont require build-windows before unit-windows by [@jdx](https://github.com/jdx) in [c85e2ec](https://github.com/jdx/mise/commit/c85e2ec77193d73ff20d4ce8fb7e3787a6db223d) + ## [2024.11.34](https://github.com/jdx/mise/compare/v2024.11.33..v2024.11.34) - 2024-11-29 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index fc75fe870..bbc0ec0f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -352,9 +352,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47" +checksum = "f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc" dependencies = [ "jobserver", "libc", @@ -2077,7 +2077,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.34" +version = "2024.11.35" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index 5ee3ec846..440afde78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.34" +version = "2024.11.35" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 7fa1e0324..0dcb7a1b1 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.34 macos-arm64 (a1b2d3e 2024-11-29) +2024.11.35 macos-arm64 (a1b2d3e 2024-11-29) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index 02530b4a2..ceef34ada 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 02530b4a202ad61a987c669b6e51a1ca314e6961 +Subproject commit ceef34ada6b2bf138ae2c6e5481a795318d3f85d diff --git a/completions/_mise b/completions/_mise index 44392e34f..3e73f6640 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_34:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_34 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_34; + if ( [[ -z "${_usage_spec_mise_2024_11_35:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_35 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_35; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_34 spec + _store_cache _usage_spec_mise_2024_11_35 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index f39247628..ab88a9ced 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,12 +6,12 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_34:-} ]]; then - _usage_spec_mise_2024_11_34="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_35:-} ]]; then + _usage_spec_mise_2024_11_35="$(mise usage)" fi # shellcheck disable=SC2207 - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_34}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_35}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 57fb2e946..09b318638 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_34 - set -g _usage_spec_mise_2024_11_34 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_35 + set -g _usage_spec_mise_2024_11_35 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_34" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_35" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index b8a32e690..e0998e837 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.34"; + version = "2024.11.35"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index d7c4c7856..c5965049f 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.34" +.TH mise 1 "mise 2024.11.35" .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.34 +v2024.11.35 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index f157177de..9fad7c4ce 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.34 +Version: 2024.11.35 Release: 1 URL: https://github.com/jdx/mise/ Group: System