Skip to content

Commit 373f1ad

Browse files
authored
chore: release 2026.3.15 (#8747)
### πŸš€ Features - **(github)** add `credential_command` setting for custom token retrieval by @jdx in [#8746](#8746) ### πŸ› Bug Fixes - **(github)** raise credential_command priority above github_tokens.toml and gh CLI by @jdx in [#8748](#8748)
1 parent 43f17c1 commit 373f1ad

File tree

11 files changed

+20
-10
lines changed

11 files changed

+20
-10
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [2026.3.15](https://github.com/jdx/mise/compare/v2026.3.14..v2026.3.15) - 2026-03-25
4+
5+
### πŸš€ Features
6+
7+
- **(github)** add `credential_command` setting for custom token retrieval by @jdx in [#8746](https://github.com/jdx/mise/pull/8746)
8+
9+
### πŸ› Bug Fixes
10+
11+
- **(github)** raise credential_command priority above github_tokens.toml and gh CLI by @jdx in [#8748](https://github.com/jdx/mise/pull/8748)
12+
313
## [2026.3.14](https://github.com/jdx/mise/compare/v2026.3.13..v2026.3.14) - 2026-03-24
414

515
### πŸš€ Features

β€ŽCargo.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88

99
[package]
1010
name = "mise"
11-
version = "2026.3.14"
11+
version = "2026.3.15"
1212
edition = "2024"
1313
description = "The front-end to your dev env"
1414
authors = ["Jeff Dickey (@jdx)"]

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $ ~/.local/bin/mise --version
6464
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
6565
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
6666
/_/ by @jdx
67-
2026.3.14 macos-arm64 (2026-03-24)
67+
2026.3.15 macos-arm64 (2026-03-25)
6868
```
6969

7070
Hook mise into your shell (pick the right one for your shell):

β€Žcompletions/_miseβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ _mise() {
2323
return 1
2424
fi
2525

26-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_14.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_15.spec"
2727
if [[ ! -f "$spec_file" ]]; then
2828
mise usage >| "$spec_file"
2929
fi

β€Žcompletions/mise.bashβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _mise() {
99

1010
local cur prev words cword was_split comp_args
1111
_comp_initialize -n : -- "$@" || return
12-
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_14.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_3_15.spec"
1313
if [[ ! -f "$spec_file" ]]; then
1414
mise usage >| "$spec_file"
1515
fi

β€Žcompletions/mise.fishβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null
88
return 1
99
end
1010
set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end)
11-
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_3_14.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_3_15.spec"
1212
if not test -f "$spec_file"
1313
mise usage | string collect > "$spec_file"
1414
end

β€Žcompletions/mise.ps1β€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Register-ArgumentCompleter -Native -CommandName 'mise' -ScriptBlock {
1010
param($wordToComplete, $commandAst, $cursorPosition)
1111

1212
$tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() }
13-
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_3_14.kdl"
13+
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_3_15.kdl"
1414

1515
if (-not (Test-Path $specFile)) {
1616
mise usage | Out-File -FilePath $specFile -Encoding utf8

β€Ždefault.nixβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
rustPlatform.buildRustPackage {
44
pname = "mise";
5-
version = "2026.3.14";
5+
version = "2026.3.15";
66

77
src = lib.cleanSource ./.;
88

β€Žpackaging/rpm/mise.specβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: The front-end to your dev env
22
Name: mise
3-
Version: 2026.3.14
3+
Version: 2026.3.15
44
Release: 1
55
URL: https://github.com/jdx/mise/
66
Group: System

0 commit comments

Comments
Β (0)