diff --git a/CHANGELOG.md b/CHANGELOG.md index 2678fa019..9cce3c811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2024.11.15](https://github.com/jdx/mise/compare/v2024.11.14..v2024.11.15) - 2024-11-16 + +### 🐛 Bug Fixes + +- bug with task dependencies by [@jdx](https://github.com/jdx) in [#3049](https://github.com/jdx/mise/pull/3049) +- bug with task dependencies by [@jdx](https://github.com/jdx) in [235000c](https://github.com/jdx/mise/commit/235000c33298fdfde6125e7f70fba4e7bf01cb4d) +- disable 1password on non-windows by [@jdx](https://github.com/jdx) in [6c584e0](https://github.com/jdx/mise/commit/6c584e0e9000a104fc040ff5b3565015d9184b28) +- disable 1password on non-windows by [@jdx](https://github.com/jdx) in [#3051](https://github.com/jdx/mise/pull/3051) +- disable_backends on windows by [@jdx](https://github.com/jdx) in [#3052](https://github.com/jdx/mise/pull/3052) + +### 🔍 Other Changes + +- set GITHUB_TOKEN in release-plz by [@jdx](https://github.com/jdx) in [b02c044](https://github.com/jdx/mise/commit/b02c0440aa35d9a43defb540671c21c577f92244) + ## [2024.11.14](https://github.com/jdx/mise/compare/v2024.11.13..v2024.11.14) - 2024-11-16 ### 🚀 Features @@ -22,6 +36,7 @@ - improve coverage perf by [@jdx](https://github.com/jdx) in [#3042](https://github.com/jdx/mise/pull/3042) - added `mise test-tool` to test tools from registry by [@jdx](https://github.com/jdx) in [#3039](https://github.com/jdx/mise/pull/3039) +- remove extra rustfmt check by [@jdx](https://github.com/jdx) in [d6cfd25](https://github.com/jdx/mise/commit/d6cfd2586cc2eb827bcb85ab354c7047158f0574) ### 🔍 Other Changes diff --git a/Cargo.lock b/Cargo.lock index 6bf6bc27b..2191799a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1760,9 +1760,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.162" +version = "0.2.164" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398" +checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" [[package]] name = "libgit2-sys" @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.14" +version = "2024.11.15" dependencies = [ "assert_cmd", "base64", @@ -2933,9 +2933,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.16" +version = "0.23.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e" +checksum = "7f1a745511c54ba6d4465e8d5dfbd81b45791756de28d4981af70d6dca128f1e" dependencies = [ "once_cell", "ring", diff --git a/Cargo.toml b/Cargo.toml index 1ea1429cc..0cba8c36d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.14" +version = "2024.11.15" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/completions/_mise b/completions/_mise index 7313fe415..b4ddb2326 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_14:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_14 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_14; + if ( [[ -z "${_usage_spec_mise_2024_11_15:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_15 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_15; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_14 spec + _store_cache _usage_spec_mise_2024_11_15 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 0ad1810aa..d7bdbb200 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_14:-} ]]; then - _usage_spec_mise_2024_11_14="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_15:-} ]]; then + _usage_spec_mise_2024_11_15="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_14}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_15}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 8eb8b70b2..5092937d0 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_14 - set -g _usage_spec_mise_2024_11_14 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_15 + set -g _usage_spec_mise_2024_11_15 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_14" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_15" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 9ecdd98d4..2f77ba829 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.14"; + version = "2024.11.15"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index c021775d8..df092f3cd 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.14" +.TH mise 1 "mise 2024.11.15" .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.14 +v2024.11.15 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index cb2706755..d710eda8e 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.14 +Version: 2024.11.15 Release: 1 URL: https://github.com/jdx/mise/ Group: System