diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e680a814..ddf748843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [2024.9.6](https://github.com/jdx/mise/compare/v2024.9.5..v2024.9.6) - 2024-09-18 + +### ๐Ÿš€ Features + +- **(tasks)** allow mise-tasks or .mise-tasks directories by [@jdx](https://github.com/jdx) in [#2610](https://github.com/jdx/mise/pull/2610) +- **(windows)** added ruby core plugin by [@jdx](https://github.com/jdx) in [#2599](https://github.com/jdx/mise/pull/2599) +- periodically prune old cache files by [@jdx](https://github.com/jdx) in [#2603](https://github.com/jdx/mise/pull/2603) +- take npm/cargo backends out of experimental by [@jdx](https://github.com/jdx) in [5496cef](https://github.com/jdx/mise/commit/5496cef30819a3998a52a8f5e6e2d91cfa3e86b0) + +### ๐Ÿ› Bug Fixes + +- **(ruby)** fixed MISE_RUBY_BUILD_OPTS by [@jdx](https://github.com/jdx) in [#2609](https://github.com/jdx/mise/pull/2609) +- **(windows)** self_update by [@jdx](https://github.com/jdx) in [#2588](https://github.com/jdx/mise/pull/2588) +- **(windows)** mise -v by [@jdx](https://github.com/jdx) in [fcc2d35](https://github.com/jdx/mise/commit/fcc2d354b962aa4fe8cc1b422b96a7e455107adc) +- **(windows)** make tasks work by [@jdx](https://github.com/jdx) in [#2591](https://github.com/jdx/mise/pull/2591) +- **(windows)** mise doctor fixes by [@jdx](https://github.com/jdx) in [#2597](https://github.com/jdx/mise/pull/2597) +- **(windows)** make exec work by [@jdx](https://github.com/jdx) in [#2598](https://github.com/jdx/mise/pull/2598) +- **(windows)** fixed shims by [@jdx](https://github.com/jdx) in [#2600](https://github.com/jdx/mise/pull/2600) + +### ๐Ÿงช Testing + +- add macos to CI by [@jdx](https://github.com/jdx) in [#2605](https://github.com/jdx/mise/pull/2605) + +### ๐Ÿ” Other Changes + +- clean up console output during project linting by [@jdx](https://github.com/jdx) in [#2607](https://github.com/jdx/mise/pull/2607) + ## [2024.9.5](https://github.com/jdx/mise/compare/v2024.9.4..v2024.9.5) - 2024-09-17 ### ๐Ÿ” Other Changes diff --git a/Cargo.lock b/Cargo.lock index 1cc54da28..54bc01fc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,9 +299,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.1" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" [[package]] name = "bzip2" @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.19" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d74707dde2ba56f86ae90effb3b43ddd369504387e718014de010cec7959800" +checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" dependencies = [ "jobserver", "libc", @@ -1968,7 +1968,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.9.5" +version = "2024.9.6" dependencies = [ "assert_cmd", "base64", @@ -4104,9 +4104,9 @@ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" [[package]] name = "unicode-normalization" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" dependencies = [ "tinyvec", ] diff --git a/Cargo.toml b/Cargo.toml index d3937ca0b..d3b2761ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.9.5" +version = "2024.9.6" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index a6c20b0a5..2dd9a50f8 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 -2024.9.5 macos-arm64 (a1b2d3e 2024-09-17) +2024.9.6 macos-arm64 (a1b2d3e 2024-09-18) ``` or install a specific a version: diff --git a/default.nix b/default.nix index e7da660a1..cad8f75a4 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.9.5"; + version = "2024.9.6"; src = lib.cleanSource ./.; diff --git a/docs/registry.md b/docs/registry.md index 1e929d0b6..4620bebbb 100644 --- a/docs/registry.md +++ b/docs/registry.md @@ -36,6 +36,7 @@ editLink: false | asdf-plugin-manager | [asdf:asdf-community/asdf-plugin-manager](https://github.com/asdf-community/asdf-plugin-manager) | | assh | [asdf:zekker6/asdf-assh](https://github.com/zekker6/asdf-assh) | | atlas | [asdf:komi1230/asdf-atlas](https://github.com/komi1230/asdf-atlas) | +| atmos | [asdf:cloudposse/asdf-atmos](https://github.com/cloudposse/asdf-atmos) | | auto-doc | [asdf:looztra/asdf-auto-doc](https://github.com/looztra/asdf-auto-doc) | | aws-amplify-cli | [asdf:LozanoMatheus/asdf-aws-amplify-cli](https://github.com/LozanoMatheus/asdf-aws-amplify-cli) | | aws-copilot | [asdf:NeoHsu/asdf-copilot](https://github.com/NeoHsu/asdf-copilot) | diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 5072ab139..5977b677e 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.9.5" +.TH mise 1 "mise 2024.9.6" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -195,6 +195,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.9.5 +v2024.9.6 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 9585f71a9..bbfc6a4cb 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.9.5 +Version: 2024.9.6 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/registry/README.md b/registry/README.md index b30687686..b7cde4edd 100644 --- a/registry/README.md +++ b/registry/README.md @@ -48,6 +48,7 @@ See the [org'sย readme](https://github.com/mise-plugins) for more information. | asdf-plugin-manager | [asdf-community/asdf-plugin-manager](https://github.com/asdf-community/asdf-plugin-manager) | | assh | [zekker6/asdf-assh](https://github.com/zekker6/asdf-assh) | | atlas | [komi1230/asdf-atlas](https://github.com/komi1230/asdf-atlas) | +| atmos | [cloudposse/asdf-atmos](https://github.com/cloudposse/asdf-atmos) | | auto-doc | [looztra/asdf-auto-doc](https://github.com/looztra/asdf-auto-doc) | | aws-copilot | [NeoHsu/asdf-copilot](https://github.com/NeoHsu/asdf-copilot) | | aws-amplify-cli | [LozanoMatheus/asdf-aws-amplify-cli](https://github.com/LozanoMatheus/asdf-aws-amplify-cli) | diff --git a/registry/plugins/atmos b/registry/plugins/atmos new file mode 100644 index 000000000..d896d5679 --- /dev/null +++ b/registry/plugins/atmos @@ -0,0 +1 @@ +repository = https://github.com/cloudposse/asdf-atmos.git diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index ce93521fb..7b119868d 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -54,6 +54,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("asdf-plugin-manager", "https://github.com/asdf-community/asdf-plugin-manager"), ("assh", "https://github.com/zekker6/asdf-assh.git"), ("atlas", "https://github.com/komi1230/asdf-atlas.git"), + ("atmos", "https://github.com/cloudposse/asdf-atmos.git"), ("auto-doc", "https://github.com/looztra/asdf-auto-doc.git"), ("aws-amplify-cli", "https://github.com/LozanoMatheus/asdf-aws-amplify-cli.git"), ("aws-copilot", "https://github.com/NeoHsu/asdf-copilot"),