From cf1a6902a5f9a98295cb53a81df8032911a75f3e Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Tue, 28 May 2024 12:16:05 -0500 Subject: [PATCH] chore: release 2024.5.24 (#2201) * chore: release 2024.5.24 * Commit from GitHub Actions (test) * Commit from GitHub Actions (test) --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.lock | 36 ++++++++++++------------------------ Cargo.toml | 2 +- README.md | 4 ++-- default.nix | 2 +- man/man1/mise.1 | 4 ++-- packaging/rpm/mise.spec | 2 +- 7 files changed, 40 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30a6ab19a..ea59ada68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [2024.5.24](https://github.com/jdx/mise/compare/v2024.5.23..v2024.5.24) - 2024-05-28 + +### 🐛 Bug Fixes + +- **(pipx)** version ordering by [@jdx](https://github.com/jdx) in [#2209](https://github.com/jdx/mise/pull/2209) +- **(use)** re-use mise.toml if exists by [@jdx](https://github.com/jdx) in [#2207](https://github.com/jdx/mise/pull/2207) +- mise trust works incorrectly with symlinked configuration file by [@roele](https://github.com/roele) in [#2186](https://github.com/jdx/mise/pull/2186) + +### 🚜 Refactor + +- simplify ForgeArg building by [@jdx](https://github.com/jdx) in [#2208](https://github.com/jdx/mise/pull/2208) + +### 🔍 Other Changes + +- resolve macros/derived-traits from crates w/ scopes rather than globally by [@donaldguy](https://github.com/donaldguy) in [#2198](https://github.com/jdx/mise/pull/2198) +- eliminate .tool-versions only used for jq by [@donaldguy](https://github.com/donaldguy) in [#2195](https://github.com/jdx/mise/pull/2195) + +### New Contributors + +* @donaldguy made their first contribution in [#2195](https://github.com/jdx/mise/pull/2195) + ## [2024.5.23](https://github.com/jdx/mise/compare/v2024.5.22..v2024.5.23) - 2024-05-27 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 9033a2db1..69dbb936d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1061,17 +1061,6 @@ dependencies = [ "regex-syntax 0.8.3", ] -[[package]] -name = "globwalk" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc" -dependencies = [ - "bitflags 1.3.2", - "ignore", - "walkdir", -] - [[package]] name = "globwalk" version = "0.9.1" @@ -1245,9 +1234,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d8d52be92d09acc2e01dddb7fde3ad983fc6489c7db4837e605bc3fca4cb63e" +checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" dependencies = [ "bytes", "futures-channel", @@ -1604,7 +1593,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.5.23" +version = "2024.5.24" dependencies = [ "assert_cmd", "base64 0.22.1", @@ -1631,7 +1620,7 @@ dependencies = [ "fslock", "git2", "globset", - "globwalk 0.9.1", + "globwalk", "home", "humantime", "indenter", @@ -1686,11 +1675,10 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" dependencies = [ - "lazy_static", "libc", "log", "openssl", @@ -2802,11 +2790,11 @@ dependencies = [ [[package]] name = "tera" -version = "1.19.1" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "970dff17c11e884a4a09bc76e3a17ef71e01bb13447a11e85226e254fe6d10b8" +checksum = "ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee" dependencies = [ - "globwalk 0.8.1", + "globwalk", "lazy_static", "pest", "pest_derive", @@ -3752,7 +3740,7 @@ checksum = "9960db6d05795260d426061b0a962282cf67c3cdc81656731d0f646807c26237" dependencies = [ "duct", "filetime", - "globwalk 0.9.1", + "globwalk", "homedir", "log", "miette", @@ -3774,9 +3762,9 @@ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2568cd0f20e86cd9a7349fe05178f7bd22f22724678448ae5a9bac266df2689" +checksum = "1dd56a4d5921bc2f99947ac5b3abe5f510b1be7376fdc5e9fce4a23c6a93e87c" dependencies = [ "arbitrary", "crc32fast", diff --git a/Cargo.toml b/Cargo.toml index f1003a041..eca7f2d72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.5.23" +version = "2024.5.24" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index f9d011015..6f2bcc037 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 -mise 2024.5.23 +mise 2024.5.24 ``` or install a specific a version: @@ -44,7 +44,7 @@ or install a specific a version: ```sh-session $ curl https://mise.run | MISE_VERSION=v2024.5.16 sh $ ~/.local/bin/mise --version -mise 2024.5.23 +mise 2024.5.24 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index 7b6f02cfb..adbf0bfbb 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.5.23"; + version = "2024.5.24"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 57f2ed808..35b6bf846 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.5.23" +.TH mise 1 "mise 2024.5.24" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -192,6 +192,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.5.23 +v2024.5.24 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 1aad3016b..32fa6b492 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.5.23 +Version: 2024.5.24 Release: 1 URL: https://github.com/jdx/mise/ Group: System