Skip to content

Commit

Permalink
chore: release 2024.12.8 (jdx#3498)
Browse files Browse the repository at this point in the history
  • Loading branch information
mise-en-dev authored and miguelmig committed Dec 21, 2024
1 parent 5c5a7fe commit 60589dc
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 20 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions completions/_mise
Original file line number Diff line number Diff line change
Expand Up @@ -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[@]}" )))"
Expand Down
4 changes: 2 additions & 2 deletions completions/mise.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions completions/mise.fish
Original file line number Diff line number Diff line change
Expand Up @@ -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))'
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

rustPlatform.buildRustPackage {
pname = "mise";
version = "2024.12.7";
version = "2024.12.8";

src = lib.cleanSource ./.;

Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/mise.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 60589dc

Please sign in to comment.