diff --git a/CHANGELOG.md b/CHANGELOG.md index 136bb6309..89ce1625d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [2024.5.1](https://github.com/jdx/mise/compare/v2024.5.0..v2024.5.1) - 2024-05-02 + +### ๐Ÿ› Bug Fixes + +- **(ruby)** handle github rate limits when fetching ruby-build version by [@jdx](https://github.com/jdx) in [4a538a7](https://github.com/jdx/mise/commit/4a538a7e282de8c59ba51ec6de64bb715debe022) +- **(ruby)** attempt to update ruby-build if it cannot check version by [@jdx](https://github.com/jdx) in [9f6e2ef](https://github.com/jdx/mise/commit/9f6e2efeb03a9cfc1786f88e84ce03ed6399a304) +- prevent crashing if "latest" is not a symlink by [@jdx](https://github.com/jdx) in [91291e0](https://github.com/jdx/mise/commit/91291e09e8fd3395f8a1265c9af2bd22eff46993) +- edge case around "latest" being the "latest" version by [@jdx](https://github.com/jdx) in [33f5473](https://github.com/jdx/mise/commit/33f547357e9f082115e81ff852c523b406e5226d) +- show source file on resolve error by [@jdx](https://github.com/jdx) in [881dbeb](https://github.com/jdx/mise/commit/881dbeb9a34fcb231bc83e14d1a12314bb995870) + +### ๐Ÿ“š Documentation + +- **(python)** warn about precompiled python and poetry by [@jdx](https://github.com/jdx) in [3c07dce](https://github.com/jdx/mise/commit/3c07dced232970fce3d585277089cbf374e4d64a) + +### ๐Ÿงช Testing + +- **(self-update)** try to enable self update test by [@jdx](https://github.com/jdx) in [778e90a](https://github.com/jdx/mise/commit/778e90af1bdfb5095e2f0b5c1b625c5abab7ee45) +- fix the test-plugins job by [@jdx](https://github.com/jdx) in [669530c](https://github.com/jdx/mise/commit/669530ce5bbd902ad0cd39e87e6c442d184353b9) + +### ๐Ÿ” Other Changes + +- **(release)** disable cache by [@jdx](https://github.com/jdx) in [b69edc6](https://github.com/jdx/mise/commit/b69edc67c83284ee758c92258608298eaba25929) +- **(ruby)** change ruby-build update failure to warn-level by [@jdx](https://github.com/jdx) in [d6f7f22](https://github.com/jdx/mise/commit/d6f7f22df93a862929ebbc8f3b6a1309e1e3c875) + ## [2024.5.0](https://github.com/jdx/mise/compare/v2024.4.12..v2024.5.0) - 2024-05-01 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 97140e9e6..b1953484a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1459,7 +1459,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.5.0" +version = "2024.5.1" dependencies = [ "assert_cmd", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index 793facc7a..0d60c54f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.5.0" +version = "2024.5.1" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index d21ba6118..08624ecc2 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,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.0 +mise 2024.5.1 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index 796b6bafc..19e739319 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.5.0"; + version = "2024.5.1"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 407d53793..b4f7e7aac 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.0" +.TH mise 1 "mise 2024.5.1" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -186,6 +186,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.5.0 +v2024.5.1 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index b8c27548b..3506e4385 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.0 +Version: 2024.5.1 Release: 1 URL: https://github.com/jdx/mise/ Group: System