From 2768e1fdeef14222dfd8353fc48524da067dbd64 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Thu, 16 Jan 2025 18:20:58 -0600 Subject: [PATCH] chore: release 2025.1.8 (#4112) --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- README.md | 2 +- aqua-registry | 2 +- completions/_mise | 6 +++--- completions/mise.bash | 6 +++--- completions/mise.fish | 8 ++++---- default.nix | 2 +- packaging/rpm/mise.spec | 2 +- 10 files changed, 46 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6c4a76cab..d99ea26ab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [2025.1.8](https://github.com/jdx/mise/compare/v2025.1.7..v2025.1.8) - 2025-01-17 + +### 🚀 Features + +- upgrade ubi by [@jdx](https://github.com/jdx) in [#4078](https://github.com/jdx/mise/pull/4078) +- enable erlang for Windows by [@roele](https://github.com/roele) in [#4128](https://github.com/jdx/mise/pull/4128) +- use aqua for opentofu by [@jdx](https://github.com/jdx) in [#4129](https://github.com/jdx/mise/pull/4129) + +### 🐛 Bug Fixes + +- **(spm)** install from annotated tag by [@MontakOleg](https://github.com/MontakOleg) in [#4120](https://github.com/jdx/mise/pull/4120) +- Fixes infinite loop in auto install not found bash function by [@bnorick](https://github.com/bnorick) in [#4094](https://github.com/jdx/mise/pull/4094) +- installing with empty version fails by [@roele](https://github.com/roele) in [#4123](https://github.com/jdx/mise/pull/4123) + +### 📚 Documentation + +- correct link to gem.rs source by [@petrblaho](https://github.com/petrblaho) in [#4119](https://github.com/jdx/mise/pull/4119) +- fix {{config_root}} got interpolated by vitepress by [@peter50216](https://github.com/peter50216) in [#4122](https://github.com/jdx/mise/pull/4122) + +### Chore + +- remove minisign from mise.toml by [@jdx](https://github.com/jdx) in [b115ba9](https://github.com/jdx/mise/commit/b115ba962fce4e63e0d6ce85f41704f302ef3e9a) + +### New Contributors + +- @peter50216 made their first contribution in [#4122](https://github.com/jdx/mise/pull/4122) +- @petrblaho made their first contribution in [#4119](https://github.com/jdx/mise/pull/4119) + ## [2025.1.7](https://github.com/jdx/mise/compare/v2025.1.6..v2025.1.7) - 2025-01-15 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 268a45043d..c2bdf984e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -354,9 +354,9 @@ checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22" [[package]] name = "bitflags" -version = "2.7.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be" +checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "block-buffer" @@ -2631,7 +2631,7 @@ dependencies = [ [[package]] name = "mise" -version = "2025.1.7" +version = "2025.1.8" dependencies = [ "base64 0.22.1", "built", diff --git a/Cargo.toml b/Cargo.toml index a70431f2c3..6c5259e76d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2025.1.7" +version = "2025.1.8" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index ac4c3f6a49..36c78563d9 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 -2025.1.7 macos-arm64 (a1b2d3e 2025-01-15) +2025.1.8 macos-arm64 (a1b2d3e 2025-01-17) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index dcd3cd9565..b7f897e3fb 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit dcd3cd9565cdb25d4b41e980b995df6d81980da7 +Subproject commit b7f897e3fbf896572c7c49adbc4388c78b144a59 diff --git a/completions/_mise b/completions/_mise index 905024ad0d..7744965e35 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_2025_1_7:-}" ]] || _cache_invalid _usage_spec_mise_2025_1_7 ) \ - && ! _retrieve_cache _usage_spec_mise_2025_1_7; + if ( [[ -z "${_usage_spec_mise_2025_1_8:-}" ]] || _cache_invalid _usage_spec_mise_2025_1_8 ) \ + && ! _retrieve_cache _usage_spec_mise_2025_1_8; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2025_1_7 spec + _store_cache _usage_spec_mise_2025_1_8 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index dc22468749..87c2e80b1f 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -6,14 +6,14 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2025_1_7:-} ]]; then - _usage_spec_mise_2025_1_7="$(mise usage)" + if [[ -z ${_usage_spec_mise_2025_1_8:-} ]]; then + _usage_spec_mise_2025_1_8="$(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_2025_1_7}" --cword="$cword" -- "${words[@]}")" + _comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_1_8}" --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 3147edd28f..37afd431ff 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null return 1 end -if ! set -q _usage_spec_mise_2025_1_7 - set -g _usage_spec_mise_2025_1_7 (mise usage | string collect) +if ! set -q _usage_spec_mise_2025_1_8 + set -g _usage_spec_mise_2025_1_8 (mise usage | string collect) end set -l tokens if commandline -x >/dev/null 2>&1 - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_7" -- (commandline -xpc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_8" -- (commandline -xpc) (commandline -t))' else - complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_7" -- (commandline -opc) (commandline -t))' + complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_1_8" -- (commandline -opc) (commandline -t))' end diff --git a/default.nix b/default.nix index e2ddca592e..5fba253423 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2025.1.7"; + version = "2025.1.8"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index c00e6f6938..1cdaf3b798 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: 2025.1.7 +Version: 2025.1.8 Release: 1 URL: https://github.com/jdx/mise/ Group: System