chore: release 2024.12.8 (#3498)

This commit is contained in:
mise-en-dev 2024-12-12 16:45:47 -06:00 committed by GitHub
parent b4036cf0d1
commit 9365ad12fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 50 additions and 20 deletions

View File

@ -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)

14
Cargo.lock generated
View File

@ -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",

View File

@ -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)"]

View File

@ -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:

@ -1 +1 @@
Subproject commit 7b19b2b65b203143fff92ad4d0ae1d9055594d20
Subproject commit 3af6ace3de1ffaa1a70c12c99d86fcb9f87af0df

View File

@ -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[@]}" )))"

View File

@ -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

View File

@ -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))'

View File

@ -2,7 +2,7 @@
rustPlatform.buildRustPackage {
pname = "mise";
version = "2024.12.7";
version = "2024.12.8";
src = lib.cleanSource ./.;

View File

@ -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