From 1fae2b02bf1770d710f8c70f4e41d97c6a4c6297 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Wed, 25 Dec 2024 14:45:03 -0600 Subject: [PATCH] chore: release 2024.12.20 (#3801) --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 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 +- packaging/rpm/mise.spec | 2 +- 10 files changed, 42 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b33640fd6..ee235be87b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [2024.12.20](https://github.com/jdx/mise/compare/v2024.12.19..v2024.12.20) - 2024-12-25 + +### ๐Ÿš€ Features + +- **(hugo)** add extended registry from aqua and keep only one registry with all aliases by [@kilianpaquier](https://github.com/kilianpaquier) in [#3813](https://github.com/jdx/mise/pull/3813) +- build erlang with all cores by [@jdx](https://github.com/jdx) in [#3802](https://github.com/jdx/mise/pull/3802) +- Modify install_rubygems_hook to place plugin in site_ruby directory by [@zkhadikov](https://github.com/zkhadikov) in [#3812](https://github.com/jdx/mise/pull/3812) + +### ๐Ÿ› Bug Fixes + +- do not require "v" prefix in mise.run by [@jdx](https://github.com/jdx) in [#3800](https://github.com/jdx/mise/pull/3800) +- add checksum for macos-x86 by [@jdx](https://github.com/jdx) in [#3815](https://github.com/jdx/mise/pull/3815) + +### ๐Ÿ“š Documentation + +- Correct link to aqua registry by [@jesse-c](https://github.com/jesse-c) in [#3803](https://github.com/jdx/mise/pull/3803) + +### ๐Ÿงช Testing + +- skip dotnet if not installed by [@jdx](https://github.com/jdx) in [1a663dd](https://github.com/jdx/mise/commit/1a663dd63e17cc08a961b86b5b0b6a1d7e9b2a1f) + +### New Contributors + +- @zkhadikov made their first contribution in [#3812](https://github.com/jdx/mise/pull/3812) +- @kilianpaquier made their first contribution in [#3813](https://github.com/jdx/mise/pull/3813) +- @jesse-c made their first contribution in [#3803](https://github.com/jdx/mise/pull/3803) + ## [2024.12.19](https://github.com/jdx/mise/compare/v2024.12.18..v2024.12.19) - 2024-12-23 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index 4be2695395..70c4ab2af8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2609,7 +2609,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.12.19" +version = "2024.12.20" dependencies = [ "base64 0.22.1", "built", diff --git a/Cargo.toml b/Cargo.toml index 0d67c1572e..ea960c175a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.12.19" +version = "2024.12.20" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index f627f8b8ea..255c139aa9 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.12.19 macos-arm64 (a1b2d3e 2024-12-23) +2024.12.20 macos-arm64 (a1b2d3e 2024-12-25) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index f4dd705163..1a932ad1e9 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit f4dd705163ea669129105c6d4d93419b974af6b2 +Subproject commit 1a932ad1e97d026b950a4044769c782779ac5e08 diff --git a/completions/_mise b/completions/_mise index 0b726d53ca..65c8f83895 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_12_19:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_19 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_12_19; + if ( [[ -z "${_usage_spec_mise_2024_12_20:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_20 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_12_20; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_12_19 spec + _store_cache _usage_spec_mise_2024_12_20 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index 785c28c679..866389b9bf 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_12_19:-} ]]; then - _usage_spec_mise_2024_12_19="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_12_20:-} ]]; then + _usage_spec_mise_2024_12_20="$(mise usage)" fi local cur prev words cword was_split comp_args _comp_initialize -n : -- "$@" || return # shellcheck disable=SC2207 - _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2024_12_19}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2024_12_20}" --cword="$cword" -- "${words[@]}")" _comp_ltrim_colon_completions "$cur" # shellcheck disable=SC2181 if [[ $? -ne 0 ]]; then diff --git a/completions/mise.fish b/completions/mise.fish index a69ef98751..94a0fb2c23 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_12_19 - set -g _usage_spec_mise_2024_12_19 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_12_20 + set -g _usage_spec_mise_2024_12_20 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_19" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_20" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 35b87b618b..4cde97afcf 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.12.19"; + version = "2024.12.20"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 1edb54e8a9..b7c12372d3 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.12.19 +Version: 2024.12.20 Release: 1 URL: https://github.com/jdx/mise/ Group: System