From b747205655db03486695752dd78516aa5d6d83b0 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Thu, 21 Nov 2024 14:28:56 -0600 Subject: [PATCH] chore: release 2024.11.22 (#3124) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 6 +++--- 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, 27 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97231d7bcf..a0fb58e8ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2024.11.22](https://github.com/jdx/mise/compare/v2024.11.21..v2024.11.22) - 2024-11-21 + +### ๐Ÿงช Testing + +- fix windows-unit job by [@jdx](https://github.com/jdx) in [#3123](https://github.com/jdx/mise/pull/3123) + +### ๐Ÿ” Other Changes + +- Update lockfile.rs by [@jdx](https://github.com/jdx) in [3184c40](https://github.com/jdx/mise/commit/3184c40ee8f3f5acf4ebda2f0781c81cd1e2f56d) + ## [2024.11.21](https://github.com/jdx/mise/compare/v2024.11.20..v2024.11.21) - 2024-11-21 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 18b670fd4c..bb044aea71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2018,7 +2018,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.21" +version = "2024.11.22" dependencies = [ "assert_cmd", "base64", @@ -2645,9 +2645,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "307e3004becf10f5a6e0d59d20f3cd28231b0e0827a96cd3e0ce6d14bc1e4bb3" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] diff --git a/Cargo.toml b/Cargo.toml index 3d4bdfeb5a..5a26470abf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.21" +version = "2024.11.22" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/completions/_mise b/completions/_mise index fcc67f64a5..66ef251bf0 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_21:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_21 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_21; + if ( [[ -z "${_usage_spec_mise_2024_11_22:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_22 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_22; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_21 spec + _store_cache _usage_spec_mise_2024_11_22 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 684da8eb42..66231abf6f 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_21:-} ]]; then - _usage_spec_mise_2024_11_21="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_22:-} ]]; then + _usage_spec_mise_2024_11_22="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_21}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_22}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 10a5f6d013..7141abe3f3 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_21 - set -g _usage_spec_mise_2024_11_21 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_22 + set -g _usage_spec_mise_2024_11_22 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_21" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_22" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 9b3f507a16..69db934374 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.21"; + version = "2024.11.22"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 94085883f4..8bc4339b80 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.21" +.TH mise 1 "mise 2024.11.22" .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.21 +v2024.11.22 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 036059754a..bba84741a9 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.21 +Version: 2024.11.22 Release: 1 URL: https://github.com/jdx/mise/ Group: System