diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e738656..61005e155 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [2024.8.14](https://github.com/jdx/mise/compare/v2024.8.13..v2024.8.14) - 2024-08-27 + +### ๐Ÿš€ Features + +- **(cargo)** allow specifying features via tool options by [@jdx](https://github.com/jdx) in [#2515](https://github.com/jdx/mise/pull/2515) +- **(zig)** make dev builds installable by [@jdx](https://github.com/jdx) in [#2514](https://github.com/jdx/mise/pull/2514) +- add support for using `uv tool` as a replacement for pipx by [@antoniomdk](https://github.com/antoniomdk) in [#2509](https://github.com/jdx/mise/pull/2509) + +### ๐Ÿ› Bug Fixes + +- **(src/path_env.rs)** Issue 2504: Fix for JoinPathsError by [@mcallaway](https://github.com/mcallaway) in [#2511](https://github.com/jdx/mise/pull/2511) +- block remote versions which are not simple versions by [@jdx](https://github.com/jdx) in [ba90c3b](https://github.com/jdx/mise/commit/ba90c3bbe71bd33d628df607326da9f0cf363af1) +- npm backend not finding updates by [@roele](https://github.com/roele) in [#2512](https://github.com/jdx/mise/pull/2512) + +### ๐Ÿ” Other Changes + +- Update contributing.md by [@jdx](https://github.com/jdx) in [e9cc129](https://github.com/jdx/mise/commit/e9cc129f703ac2949900307a3b828c3a095644ca) +- fix nightly lint warning by [@jdx](https://github.com/jdx) in [6796a46](https://github.com/jdx/mise/commit/6796a46f95227286f3337bce374e7447536e9503) + +### New Contributors + +* @mcallaway made their first contribution in [#2511](https://github.com/jdx/mise/pull/2511) +* @antoniomdk made their first contribution in [#2509](https://github.com/jdx/mise/pull/2509) + ## [2024.8.13](https://github.com/jdx/mise/compare/v2024.8.12..v2024.8.13) - 2024-08-26 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index e67459e37..4f3bc4716 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -551,9 +551,9 @@ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "constant_time_eq" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "contracts" @@ -1029,9 +1029,9 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.24" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf401df4a4e3872c4fe8151134cf483738e74b67fc934d6532c882b3d24a4550" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if", "libc", @@ -1942,7 +1942,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.8.13" +version = "2024.8.14" dependencies = [ "assert_cmd", "base64", @@ -2943,9 +2943,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.34" +version = "0.38.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f" dependencies = [ "bitflags 2.6.0", "errno 0.3.9", @@ -2999,9 +2999,9 @@ checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" [[package]] name = "rustls-webpki" -version = "0.102.6" +version = "0.102.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e" +checksum = "84678086bd54edf2b415183ed7a94d0efb049f1b646a33e22a36f3794be6ae56" dependencies = [ "ring", "rustls-pki-types", diff --git a/Cargo.toml b/Cargo.toml index b4850ffe1..88d608540 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.8.13" +version = "2024.8.14" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 3ede0ad82..c1bdeac84 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.13 +mise 2024.8.14 ``` 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.13 +mise 2024.8.14 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index 53aff9eb8..b08b71977 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.8.13"; + version = "2024.8.14"; src = lib.cleanSource ./.; diff --git a/docs/registry.md b/docs/registry.md index ab574d4cd..8a2729fe3 100644 --- a/docs/registry.md +++ b/docs/registry.md @@ -258,7 +258,7 @@ editLink: false | gleam | [asdf:asdf-community/asdf-gleam](https://github.com/asdf-community/asdf-gleam) | | glen | [asdf:bradym/asdf-glen](https://github.com/bradym/asdf-glen) | | glooctl | [asdf:halilkaya/asdf-glooctl](https://github.com/halilkaya/asdf-glooctl) | -| glow | [asdf:gr1m0h/asdf-glow](https://github.com/gr1m0h/asdf-glow) | +| glow | [asdf:mise-plugins/asdf-glow](https://github.com/mise-plugins/asdf-glow) | | go-containerregistry | [asdf:dex4er/asdf-go-containerregistry](https://github.com/dex4er/asdf-go-containerregistry) | | go-getter | [asdf:ryodocx/asdf-go-getter](https://github.com/ryodocx/asdf-go-getter) | | go-jira | [asdf:dguihal/asdf-go-jira](https://github.com/dguihal/asdf-go-jira) | diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 99cf5e749..5b53a1b39 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.13" +.TH mise 1 "mise 2024.8.14" .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.13 +v2024.8.14 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 627d87d29..1f33e5379 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.13 +Version: 2024.8.14 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/registry/README.md b/registry/README.md index 07361fbd6..fadeaf0c2 100644 --- a/registry/README.md +++ b/registry/README.md @@ -266,7 +266,7 @@ See the [org'sย readme](https://github.com/mise-plugins) for more information. | Gleam | [asdf-community/asdf-gleam](https://github.com/asdf-community/asdf-gleam) | | Glen | [bradym/asdf-glen](https://github.com/bradym/asdf-glen) | | glooctl | [halilkaya/asdf-glooctl](https://github.com/halilkaya/asdf-glooctl) | -| glow | [gr1m0h/asdf-glow](https://github.com/gr1m0h/asdf-glow) | +| glow | [mise-plugins/asdf-glow](https://github.com/mise-plugins/asdf-glow) | | GNU Guile | [indiebrain/asdf-guile](https://github.com/indiebrain/asdf-guile) | | GNU nano | [mfakane/asdf-nano](https://github.com/mfakane/asdf-nano) | | go-sdk | [yacchi/asdf-go-sdk](https://github.com/yacchi/asdf-go-sdk) | diff --git a/registry/plugins/glow b/registry/plugins/glow index 6af9964d7..561a4b07d 100644 --- a/registry/plugins/glow +++ b/registry/plugins/glow @@ -1 +1 @@ -repository = https://github.com/gr1m0h/asdf-glow.git +repository = https://github.com/mise-plugins/asdf-glow.git diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index f735100a9..c9f65e0b6 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -275,7 +275,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("gleam", "https://github.com/asdf-community/asdf-gleam.git"), ("glen", "https://github.com/bradym/asdf-glen"), ("glooctl", "https://github.com/halilkaya/asdf-glooctl.git"), - ("glow", "https://github.com/gr1m0h/asdf-glow.git"), + ("glow", "https://github.com/mise-plugins/asdf-glow.git"), ("go-containerregistry", "https://github.com/dex4er/asdf-go-containerregistry.git"), ("go-getter", "https://github.com/ryodocx/asdf-go-getter.git"), ("go-jira", "https://github.com/dguihal/asdf-go-jira.git"),