From 6e6c0997e3c7e9d8af88234d4b9fd87fd2b5e5e7 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Thu, 21 Nov 2024 16:17:32 -0600 Subject: [PATCH] chore: release 2024.11.23 (#3126) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 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 +- 9 files changed, 21 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0fb58e8ea..4fedd5ed56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2024.11.23](https://github.com/jdx/mise/compare/v2024.11.22..v2024.11.23) - 2024-11-21 + +### ๐Ÿ› Bug Fixes + +- skip lockfile methods when experimental is disabled by [@jdx](https://github.com/jdx) in [91c30da](https://github.com/jdx/mise/commit/91c30da1575ba05166a097b3aede3b622d17e90e) + ## [2024.11.22](https://github.com/jdx/mise/compare/v2024.11.21..v2024.11.22) - 2024-11-21 ### ๐Ÿงช Testing diff --git a/Cargo.lock b/Cargo.lock index bb044aea71..7cb6e12939 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2018,7 +2018,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.22" +version = "2024.11.23" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 5a26470abf..0f3d58da00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.22" +version = "2024.11.23" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/completions/_mise b/completions/_mise index 66ef251bf0..2736327ad7 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_22:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_22 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_22; + if ( [[ -z "${_usage_spec_mise_2024_11_23:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_23 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_23; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_22 spec + _store_cache _usage_spec_mise_2024_11_23 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 66231abf6f..94f49c562b 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_22:-} ]]; then - _usage_spec_mise_2024_11_22="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_23:-} ]]; then + _usage_spec_mise_2024_11_23="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_22}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_23}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 7141abe3f3..9cba21083e 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_22 - set -g _usage_spec_mise_2024_11_22 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_23 + set -g _usage_spec_mise_2024_11_23 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_22" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_23" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 69db934374..adf9dfd970 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.22"; + version = "2024.11.23"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 8bc4339b80..d58a89e106 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.22" +.TH mise 1 "mise 2024.11.23" .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.22 +v2024.11.23 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index bba84741a9..1cbf2b6314 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.22 +Version: 2024.11.23 Release: 1 URL: https://github.com/jdx/mise/ Group: System