diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd128e4b..b45f592e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [2024.8.1](https://github.com/jdx/mise/compare/v2024.8.0..v2024.8.1) - 2024-08-01 + +### 🐛 Bug Fixes + +- various windows bug fixes by [@jdx](https://github.com/jdx) in [90b02eb](https://github.com/jdx/mise/commit/90b02eb49055bc7d458cd3cbfb0de00119539dfb) +- ignore PROMPT_DIRTRIM in diffing logic by [@jdx](https://github.com/jdx) in [7b5563c](https://github.com/jdx/mise/commit/7b5563cd007edf26bc17f07e6cddabacad451e00) + +### 📚 Documentation + +- added information on rolling alpine tokens by [@jdx](https://github.com/jdx) in [bd693b0](https://github.com/jdx/mise/commit/bd693b02fb4d1060ff7a07dcea07b4a7c5584a8b) + +### 🔍 Other Changes + +- mark releases as draft until they have been fully released by [@jdx](https://github.com/jdx) in [508f125](https://github.com/jdx/mise/commit/508f125dcea9c6d0457b59c36293204d25adc7ef) +- fix windows builds by [@jdx](https://github.com/jdx) in [91c90a2](https://github.com/jdx/mise/commit/91c90a2b2d373998433c64196254f7e4d0d8cd82) +- fix alpine release builds by [@jdx](https://github.com/jdx) in [a7534bb](https://github.com/jdx/mise/commit/a7534bbdd961e6a16852c947f1594d6a52034e58) +- only edit releases when not a dry run by [@jdx](https://github.com/jdx) in [2255522](https://github.com/jdx/mise/commit/2255522b5045e45ce0dea3699f6555a22a271971) + ## [2024.8.0](https://github.com/jdx/mise/compare/v2024.7.5..v2024.8.0) - 2024-08-01 ### 📚 Documentation diff --git a/Cargo.lock b/Cargo.lock index bf689c21e..03a37f9a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1628,7 +1628,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.8.0" +version = "2024.8.1" dependencies = [ "assert_cmd", "base64", diff --git a/Cargo.toml b/Cargo.toml index 66c83930d..b9ac5fab5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.8.0" +version = "2024.8.1" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 68a648b2b..231787d78 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.8.0 +mise 2024.8.1 ``` 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.8.0 +mise 2024.8.1 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index ee0fa4c39..3dfe3b9e4 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.8.0"; + version = "2024.8.1"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index c1ab7a1de..0524ae5e8 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.8.0" +.TH mise 1 "mise 2024.8.1" .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.8.0 +v2024.8.1 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 21a1c159e..c6dbd373c 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.8.0 +Version: 2024.8.1 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/src/env.rs b/src/env.rs index ffdab6a91..bb09df2c6 100644 --- a/src/env.rs +++ b/src/env.rs @@ -373,7 +373,9 @@ fn linux_distro() -> Option { } fn filename(path: &str) -> &str { - path.rsplit_once(path::MAIN_SEPARATOR_STR).map(|(_, file)| file).unwrap_or(path) + path.rsplit_once(path::MAIN_SEPARATOR_STR) + .map(|(_, file)| file) + .unwrap_or(path) } fn is_ninja_on_path() -> bool {