Skip to content

Commit 57d68f9

Browse files
committed
chore: release 2026.5.18
1 parent 6749dfe commit 57d68f9

11 files changed

Lines changed: 31 additions & 10 deletions

File tree

CHANGELOG.md

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

3+
## [2026.5.18](https://github.com/jdx/mise/compare/v2026.5.17..v2026.5.18) - 2026-05-31
4+
5+
### 🚀 Features
6+
7+
- **(config)** add script arrays for hooks by @risu729 in [#9836](https://github.com/jdx/mise/pull/9836)
8+
9+
### 🐛 Bug Fixes
10+
11+
- **(conda)** include channel in lock identity by @risu729 in [#9984](https://github.com/jdx/mise/pull/9984)
12+
- **(config)** honor ceiling paths during miserc discovery by @risu729 in [#10165](https://github.com/jdx/mise/pull/10165)
13+
- **(env)** drop stale install paths during reactivation by @risu729 in [#10162](https://github.com/jdx/mise/pull/10162)
14+
- **(github)** include target artifact options in lock identity by @risu729 in [#9985](https://github.com/jdx/mise/pull/9985)
15+
- **(installer)** add missing warn helper by @risu729 in [#10157](https://github.com/jdx/mise/pull/10157)
16+
- **(rust)** include toolchain install options in lock identity by @risu729 in [#9988](https://github.com/jdx/mise/pull/9988)
17+
- **(task)** include task refs in json run output by @risu729 in [#10163](https://github.com/jdx/mise/pull/10163)
18+
- **(task)** bump usage for completions by @jdx in [#10181](https://github.com/jdx/mise/pull/10181)
19+
20+
### Chore
21+
22+
- **(npm)** publish mise package by @jdx in [#10183](https://github.com/jdx/mise/pull/10183)
23+
324
## [2026.5.17](https://github.com/jdx/mise/compare/v2026.5.16..v2026.5.17) - 2026-05-31
425

526
### 🚀 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
@@ -9,7 +9,7 @@ members = [
99

1010
[package]
1111
name = "mise"
12-
version = "2026.5.17"
12+
version = "2026.5.18"
1313
edition = "2024"
1414
description = "Dev tools, env vars, and tasks in one CLI"
1515
authors = ["Jeff Dickey (@jdx)"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ $ ~/.local/bin/mise --version
7171
/ / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/
7272
/_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/
7373
/_/ by @jdx
74-
2026.5.17 macos-arm64 (2026-05-31)
74+
2026.5.18 macos-arm64 (2026-05-31)
7575
```
7676

7777
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_5_17.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_5_18.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_5_17.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_5_18.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_5_17.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_5_18.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_5_17.kdl"
13+
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_5_18.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.5.17";
5+
version = "2026.5.18";
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: Dev tools, env vars, and tasks in one CLI
22
Name: mise
3-
Version: 2026.5.17
3+
Version: 2026.5.18
44
Release: 1
55
URL: https://github.com/jdx/mise/
66
Group: System

0 commit comments

Comments
 (0)