From e018ee362a0b32e41599b69e1c96d898d7b457c8 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Sat, 14 Dec 2024 03:26:31 +0000 Subject: [PATCH] chore: release 2024.12.10 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- aqua-registry | 2 +- completions/_mise | 6 +++--- completions/mise.bash | 4 ++-- completions/mise.fish | 6 +++--- default.nix | 2 +- packaging/rpm/mise.spec | 2 +- 10 files changed, 25 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1699e5f32..5295aac0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [2024.12.10](https://github.com/jdx/mise/compare/v2024.12.9..v2024.12.10) - 2024-12-14 + +### 🚀 Features + +- redactions by [@jdx](https://github.com/jdx) in [#3529](https://github.com/jdx/mise/pull/3529) +- show unload messages/run leave hook by [@jdx](https://github.com/jdx) in [#3532](https://github.com/jdx/mise/pull/3532) + +### 🐛 Bug Fixes + +- disable libgit2 for updating plugin repos for now by [@jdx](https://github.com/jdx) in [#3533](https://github.com/jdx/mise/pull/3533) + ## [2024.12.9](https://github.com/jdx/mise/compare/v2024.12.8..v2024.12.9) - 2024-12-14 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index def3cc779..3b2c06426 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2096,7 +2096,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.12.9" +version = "2024.12.10" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index b65bae995..d4fe1671e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.12.9" +version = "2024.12.10" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 1698ed9b2..6db8ad856 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.12.9 macos-arm64 (a1b2d3e 2024-12-14) +2024.12.10 macos-arm64 (a1b2d3e 2024-12-14) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index 6ed6c2675..fbb0983c8 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 6ed6c26753ff04aadb3c9e4ade5e1ba93da5fe06 +Subproject commit fbb0983c8e78ffcc96c0cce66efc84531c107023 diff --git a/completions/_mise b/completions/_mise index bc5bf3167..3df49b721 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_12_9:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_9 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_12_9; + if ( [[ -z "${_usage_spec_mise_2024_12_10:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_10 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_12_10; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_12_9 spec + _store_cache _usage_spec_mise_2024_12_10 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index eaa18858c..dc82b8f69 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -3482,8 +3482,8 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_12_9:-} ]]; then - _usage_spec_mise_2024_12_9="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_12_10:-} ]]; then + _usage_spec_mise_2024_12_10="$(mise usage)" fi local cur prev words cword was_split comp_args diff --git a/completions/mise.fish b/completions/mise.fish index 2f6463d4c..fda4ef332 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_12_9 - set -g _usage_spec_mise_2024_12_9 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_12_10 + set -g _usage_spec_mise_2024_12_10 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_9" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_10" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 0b909e0cf..2eb4ac97e 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.12.9"; + version = "2024.12.10"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 008ee39fd..2f6340eb4 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.12.9 +Version: 2024.12.10 Release: 1 URL: https://github.com/jdx/mise/ Group: System