From c4cd65de3d20863bcd3d43c157e8a28ff668e4a2 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Sat, 30 Nov 2024 03:09:53 +0000 Subject: [PATCH] chore: release 2024.11.38 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- aqua-registry | 2 +- completions/_mise | 6 +++--- completions/mise.bash | 6 +++--- completions/mise.fish | 6 +++--- default.nix | 2 +- man/man1/mise.1 | 4 ++-- packaging/rpm/mise.spec | 2 +- 11 files changed, 23 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcaa16ef24..1ba80a4a8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2024.11.38](https://github.com/jdx/mise/compare/v2024.11.37..v2024.11.38) - 2024-11-30 + +### ๐Ÿงช Testing + +- remove non-working maven test by [@jdx](https://github.com/jdx) in [5a3ed16](https://github.com/jdx/mise/commit/5a3ed16efb29dbf80f5ac251eec39e3a462d2219) + ## [2024.11.37](https://github.com/jdx/mise/compare/v2024.11.36..v2024.11.37) - 2024-11-30 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index 05210d7bb9..9b2d395671 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2005,7 +2005,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.37" +version = "2024.11.38" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index c329480bc1..4bb2e63e63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.37" +version = "2024.11.38" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index b04a92ab42..8501bb9bfb 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.37 macos-arm64 (a1b2d3e 2024-11-30) +2024.11.38 macos-arm64 (a1b2d3e 2024-11-30) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index b23bc62d12..5c720638ac 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit b23bc62d1296ad91a19e14959520e4f84e9df9b9 +Subproject commit 5c720638ac51b388668577111df6f4bbc7d0b9f7 diff --git a/completions/_mise b/completions/_mise index 6ae241bb38..9327bf7ed4 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_37:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_37 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_37; + if ( [[ -z "${_usage_spec_mise_2024_11_38:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_38 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_38; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_37 spec + _store_cache _usage_spec_mise_2024_11_38 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index d166de814f..f7332a1772 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,12 +6,12 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_37:-} ]]; then - _usage_spec_mise_2024_11_37="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_38:-} ]]; then + _usage_spec_mise_2024_11_38="$(mise usage)" fi # shellcheck disable=SC2207 - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_37}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_38}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 84fbee6520..b866253868 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_37 - set -g _usage_spec_mise_2024_11_37 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_38 + set -g _usage_spec_mise_2024_11_38 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_37" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_38" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 219473a9bd..f54964a34c 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.37"; + version = "2024.11.38"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index f54001b7ee..0f920569a2 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.37" +.TH mise 1 "mise 2024.11.38" .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.37 +v2024.11.38 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 18bd243d09..e31aaa972f 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.37 +Version: 2024.11.38 Release: 1 URL: https://github.com/jdx/mise/ Group: System