From f930a00c0fdb8795ef6292b600f729276ec99e48 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Wed, 13 Nov 2024 22:54:59 -0600 Subject: [PATCH] chore: release 2024.11.11 (#3017) --- CHANGELOG.md | 14 ++++++++++++++ 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, 29 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf56ff350..7a5178865a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2024.11.11](https://github.com/jdx/mise/compare/v2024.11.10..v2024.11.11) - 2024-11-14 + +### ๐Ÿงช Testing + +- added hyperfine test by [@jdx](https://github.com/jdx) in [#3016](https://github.com/jdx/mise/pull/3016) + +### ๐Ÿ” Other Changes + +- Update mise.toml by [@jdx](https://github.com/jdx) in [35c55e0](https://github.com/jdx/mise/commit/35c55e070a20dde64ee9b669c8cad35d33714499) +- added tasks.toml by [@jdx](https://github.com/jdx) in [8a02900](https://github.com/jdx/mise/commit/8a029005d52ba337a6850ded9ddde3f82903b3c6) +- reuse CI cache on jobs by [@jdx](https://github.com/jdx) in [#3018](https://github.com/jdx/mise/pull/3018) +- remove cargo-deny warning by [@jdx](https://github.com/jdx) in [a1479b6](https://github.com/jdx/mise/commit/a1479b63fc478a14add5991657a9c8986e43407c) +- improve CI caching by [@jdx](https://github.com/jdx) in [0ffe565](https://github.com/jdx/mise/commit/0ffe565227cb68b814f3e1937b347b72de3700a3) + ## [2024.11.10](https://github.com/jdx/mise/compare/v2024.11.9..v2024.11.10) - 2024-11-14 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index 92a331a7e1..c531cb8741 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.10" +version = "2024.11.11" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 7312269513..7379db6fa0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.10" +version = "2024.11.11" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/completions/_mise b/completions/_mise index d3eca58d82..095d9d5786 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_10:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_10 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_10; + if ( [[ -z "${_usage_spec_mise_2024_11_11:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_11 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_11; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_10 spec + _store_cache _usage_spec_mise_2024_11_11 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 90d1d7c9d8..976283a5fd 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_10:-} ]]; then - _usage_spec_mise_2024_11_10="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_11:-} ]]; then + _usage_spec_mise_2024_11_11="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_10}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_11}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 2547a8d238..91bacafc14 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_10 - set -U _usage_spec_mise_2024_11_10 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_11 + set -U _usage_spec_mise_2024_11_11 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_10" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_11" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index f6260d9759..7fdd0e4067 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.10"; + version = "2024.11.11"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index d6cb149180..c92431ba83 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.10" +.TH mise 1 "mise 2024.11.11" .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.10 +v2024.11.11 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index a818b7cdc9..6a67c9cea5 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.10 +Version: 2024.11.11 Release: 1 URL: https://github.com/jdx/mise/ Group: System