diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a5178865a..d3bcca5073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2024.11.12](https://github.com/jdx/mise/compare/v2024.11.11..v2024.11.12) - 2024-11-14 + +### ๐Ÿš€ Features + +- added more aqua tools by [@jdx](https://github.com/jdx) in [#3021](https://github.com/jdx/mise/pull/3021) + +### ๐Ÿงช Testing + +- build mise for coverage tests by [@jdx](https://github.com/jdx) in [#3020](https://github.com/jdx/mise/pull/3020) + +### ๐Ÿ” Other Changes + +- build during windows-unit by [@jdx](https://github.com/jdx) in [995907f](https://github.com/jdx/mise/commit/995907f43266972292dd32a4751fc3ee3d7677d2) +- fix lint error by [@jdx](https://github.com/jdx) in [924592a](https://github.com/jdx/mise/commit/924592aeb9732b0064072b601fb2e058610fc6b5) + ## [2024.11.11](https://github.com/jdx/mise/compare/v2024.11.10..v2024.11.11) - 2024-11-14 ### ๐Ÿงช Testing diff --git a/Cargo.lock b/Cargo.lock index 545bee450f..ce0c8469b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.11.11" +version = "2024.11.12" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 9cf11df7a5..554d367b23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.11.11" +version = "2024.11.12" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 574ef8e5e7..93ab19eff2 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,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.11 macos-arm64 (a1b2d3e 2024-11-14) +2024.11.12 macos-arm64 (a1b2d3e 2024-11-14) ``` or install a specific a version: diff --git a/completions/_mise b/completions/_mise index 095d9d5786..6f09fef587 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_11:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_11 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_11_11; + if ( [[ -z "${_usage_spec_mise_2024_11_12:-}" ]] || _cache_invalid _usage_spec_mise_2024_11_12 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_11_12; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_11_11 spec + _store_cache _usage_spec_mise_2024_11_12 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 976283a5fd..f23abe2d6c 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,11 +6,11 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_11_11:-} ]]; then - _usage_spec_mise_2024_11_11="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_11_12:-} ]]; then + _usage_spec_mise_2024_11_12="$(mise usage)" fi - COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_11}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) + COMPREPLY=( $(usage complete-word --shell bash -s "${_usage_spec_mise_2024_11_12}" --cword="$COMP_CWORD" -- "${COMP_WORDS[@]}" ) ) if [[ $? -ne 0 ]]; then unset COMPREPLY fi diff --git a/completions/mise.fish b/completions/mise.fish index 91bacafc14..ac55ae315f 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_11 - set -U _usage_spec_mise_2024_11_11 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_11_12 + set -U _usage_spec_mise_2024_11_12 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_11" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_11_12" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 7fdd0e4067..da836dc071 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.11.11"; + version = "2024.11.12"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index c92431ba83..520b36f239 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.11" +.TH mise 1 "mise 2024.11.12" .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.11 +v2024.11.12 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 6a67c9cea5..0e3c38deb8 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.11 +Version: 2024.11.12 Release: 1 URL: https://github.com/jdx/mise/ Group: System