diff --git a/CHANGELOG.md b/CHANGELOG.md index d545994f97..55827c0d32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [2024.12.8](https://github.com/jdx/mise/compare/v2024.12.7..v2024.12.8) - 2024-12-12 + +### 🚀 Features + +- **(registry)** use pipx for pdm by [@risu729](https://github.com/risu729) in [#3504](https://github.com/jdx/mise/pull/3504) +- added pitchfork by [@jdx](https://github.com/jdx) in [bac731e](https://github.com/jdx/mise/commit/bac731e47f00245ce13e7eec5716509704519d71) + +### 🐛 Bug Fixes + +- Adds support for multi-use args by [@bnorick](https://github.com/bnorick) in [#3505](https://github.com/jdx/mise/pull/3505) +- make task completion script POSIX by [@jdx](https://github.com/jdx) in [b92b560](https://github.com/jdx/mise/commit/b92b5603bb23d55b58e7ee8effe8d6293036c5a9) + +### 📚 Documentation + +- Add more examples for toml tasks by [@hverlin](https://github.com/hverlin) in [#3491](https://github.com/jdx/mise/pull/3491) + +### 🔍 Other Changes + +- Fix README link. by [@biggusbeetus](https://github.com/biggusbeetus) in [#3502](https://github.com/jdx/mise/pull/3502) +- use main branch for winget by [@jdx](https://github.com/jdx) in [b4036cf](https://github.com/jdx/mise/commit/b4036cf0d10f6ccd8758b0bebc341963c8777d2e) + +### New Contributors + +- @bnorick made their first contribution in [#3505](https://github.com/jdx/mise/pull/3505) +- @biggusbeetus made their first contribution in [#3502](https://github.com/jdx/mise/pull/3502) + ## [2024.12.7](https://github.com/jdx/mise/compare/v2024.12.6..v2024.12.7) - 2024-12-12 ### 🚀 Features @@ -29,6 +55,10 @@ - updated `mise watch` docs to drop the `-t` by [@jdx](https://github.com/jdx) in [8ea6226](https://github.com/jdx/mise/commit/8ea622688cb01a0a0a2805692b38a4a7f1340ce5) +### 🔍 Other Changes + +- move debug log to trace by [@jdx](https://github.com/jdx) in [5c6c884](https://github.com/jdx/mise/commit/5c6c884cf51e704d1c8c347790ec30b30b0f401e) + ### New Contributors - @yhakbar made their first contribution in [#3486](https://github.com/jdx/mise/pull/3486) diff --git a/Cargo.lock b/Cargo.lock index 6569275f94..e4f4b40790 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2086,7 +2086,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.12.7" +version = "2024.12.8" dependencies = [ "base64", "built", @@ -3176,9 +3176,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.23" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" [[package]] name = "serde" @@ -4132,9 +4132,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" [[package]] name = "usage-lib" -version = "1.5.0" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4701de4e469b03f107de4e8c101076d554e52df2a7fb95172d4fee3f302fb66f" +checksum = "a4dd38cc136165d851bfdd1fe20a89079c5192dbcedd5d008f48c39a20079ba7" dependencies = [ "clap", "heck 0.5.0", @@ -4640,9 +4640,9 @@ dependencies = [ [[package]] name = "xx" -version = "2.0.2" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53ba8e1329637bfde9509cf8be1b3b9eed7c0130e60408a45f6d514a11f7974b" +checksum = "43e8a6586de03e05832a7e364b3b94fb86ae16bbaa881f3e7998c4e66c6b900f" dependencies = [ "bzip2", "duct", diff --git a/Cargo.toml b/Cargo.toml index 51c3971db6..96b490797c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.12.7" +version = "2024.12.8" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 133bc53340..7db07feec0 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,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.12.7 macos-arm64 (a1b2d3e 2024-12-12) +2024.12.8 macos-arm64 (a1b2d3e 2024-12-12) ``` or install a specific a version: diff --git a/aqua-registry b/aqua-registry index 7b19b2b65b..3af6ace3de 160000 --- a/aqua-registry +++ b/aqua-registry @@ -1 +1 @@ -Subproject commit 7b19b2b65b203143fff92ad4d0ae1d9055594d20 +Subproject commit 3af6ace3de1ffaa1a70c12c99d86fcb9f87af0df diff --git a/completions/_mise b/completions/_mise index c675d0557e..8ec8597dc7 100644 --- a/completions/_mise +++ b/completions/_mise @@ -27,11 +27,11 @@ _mise() { zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy fi - if ( [[ -z "${_usage_spec_mise_2024_12_7:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_7 ) \ - && ! _retrieve_cache _usage_spec_mise_2024_12_7; + if ( [[ -z "${_usage_spec_mise_2024_12_8:-}" ]] || _cache_invalid _usage_spec_mise_2024_12_8 ) \ + && ! _retrieve_cache _usage_spec_mise_2024_12_8; then spec="$(mise usage)" - _store_cache _usage_spec_mise_2024_12_7 spec + _store_cache _usage_spec_mise_2024_12_8 spec fi _arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))" diff --git a/completions/mise.bash b/completions/mise.bash index f19b6a3705..4dd6ad07e3 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -3482,8 +3482,8 @@ _mise() { return 1 fi - if [[ -z ${_usage_spec_mise_2024_12_7:-} ]]; then - _usage_spec_mise_2024_12_7="$(mise usage)" + if [[ -z ${_usage_spec_mise_2024_12_8:-} ]]; then + _usage_spec_mise_2024_12_8="$(mise usage)" fi local cur prev words cword was_split comp_args diff --git a/completions/mise.fish b/completions/mise.fish index c1536cc313..10ec98f958 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -6,7 +6,7 @@ if ! command -v usage &> /dev/null return 1 end -if ! set -q _usage_spec_mise_2024_12_7 - set -g _usage_spec_mise_2024_12_7 (mise usage | string collect) +if ! set -q _usage_spec_mise_2024_12_8 + set -g _usage_spec_mise_2024_12_8 (mise usage | string collect) end -complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_7" -- (commandline -cop) (commandline -t))' +complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2024_12_8" -- (commandline -cop) (commandline -t))' diff --git a/default.nix b/default.nix index 6d59f25967..8c3adac941 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.12.7"; + version = "2024.12.8"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 96b71d3b5b..abc1741a34 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.12.7 +Version: 2024.12.8 Release: 1 URL: https://github.com/jdx/mise/ Group: System