diff --git a/CHANGELOG.md b/CHANGELOG.md index f05fdd2a0..3a1dfb76c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project will be documented in this file. +## [2024.3.8](https://github.com/jdx/mise/compare/v2024.3.7..v2024.3.8) - 2024-03-23 + +### ๐Ÿš€ Features + +- use http2 for reqwest (#1825) - [7ac7198](https://github.com/jdx/mise/commit/7ac71985e1a7060e2adfc0c1d9a3e70a2fba09c9) - [@jdx](https://github.com/jdx) + +### ๐Ÿ› Bug Fixes + +- **(nu)** Gracefully handle missing `$env.config` (#1809) - [770e00b](https://github.com/jdx/mise/commit/770e00b8a541097544de1d1ef1c753acd0fdbf21) - [@texastoland](https://github.com/texastoland) +- Apple x64 version of mise doesn't work (#1821) - [0c0074a](https://github.com/jdx/mise/commit/0c0074a1607f55fbff33115bd33dc1c4f8c7cf4e) - [@roele](https://github.com/roele) + +### ๐Ÿงช Testing + +- fix warnings - [f0604a3](https://github.com/jdx/mise/commit/f0604a3224d5081012101d5266879c6d0af0d39d) - [@jdx](https://github.com/jdx) + +### โš™๏ธ Miscellaneous Tasks + +- automatically bump minor version if month/year changes - [96ad08d](https://github.com/jdx/mise/commit/96ad08d8acb6b7a4eff0be2f49022080d10b9b71) - [@mise-en-dev](https://github.com/mise-en-dev) +- updated cargo-deny config (#1824) - [02c7e5c](https://github.com/jdx/mise/commit/02c7e5c262a428477d8c12db2d6c59b8d90b367f) - [@jdx](https://github.com/jdx) + +### Release + +- fix version set - [2be7fe5](https://github.com/jdx/mise/commit/2be7fe51c0fb9f66c43cd6e940f4eb18ee83c822) - [@jdx](https://github.com/jdx) + ## [2024.3.7](https://github.com/jdx/mise/compare/v2024.3.6..v2024.3.7) - 2024-03-21 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 90ab2060f..277c95ac8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,9 +150,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.69" +version = "0.3.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" dependencies = [ "addr2line", "cc", @@ -243,9 +243,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "calm_io" @@ -1463,9 +1463,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.15" +version = "1.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6" +checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9" dependencies = [ "cc", "libc", @@ -1554,7 +1554,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.3.7" +version = "2024.3.8" dependencies = [ "assert_cmd", "base64 0.22.0", diff --git a/Cargo.toml b/Cargo.toml index 791ef0934..4bbab66e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.3.7" +version = "2024.3.8" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index b34c153f4..f353dd987 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.3.7 +mise 2024.3.8 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index 0304ab7db..e2eec79ac 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.3.7"; + version = "2024.3.8"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 762947875..d0e930474 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.3.7" +.TH mise 1 "mise 2024.3.8" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -183,6 +183,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.3.7 +v2024.3.8 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 01c17302f..8a97cbc15 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.3.7 +Version: 2024.3.8 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index 0c5291eb3..231bbc793 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -431,6 +431,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("logtalk", "https://github.com/LogtalkDotOrg/asdf-logtalk.git"), ("loki-logcli", "https://github.com/comdotlinux/asdf-loki-logcli.git"), ("ls-lint", "https://github.com/Ameausoone/asdf-ls-lint.git"), + ("lsd", "https://github.com/mise-plugins/asdf-lsd"), ("lua", "https://github.com/Stratus3D/asdf-lua.git"), ("lua-language-server", "https://github.com/bellini666/asdf-lua-language-server"), ("luaJIT", "https://github.com/smashedtoatoms/asdf-luaJIT.git"), @@ -774,6 +775,7 @@ pub static TRUSTED_SHORTHANDS: Lazy> = Lazy::new(|| { "hub", "jq", "levant", + "lsd", "nomad", "nomad-pack", "packer",