Skip to content

Commit 0fc1fd0

Browse files
committed
chore: release 2025.11.2
1 parent 4efad26 commit 0fc1fd0

File tree

10 files changed

+38
-9
lines changed

10 files changed

+38
-9
lines changed

CHANGELOG.md

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

3+
## [2025.11.2](https://github.com/jdx/mise/compare/v2025.11.1..v2025.11.2) - 2025-11-02
4+
5+
### 📦 Registry
6+
7+
- rename mise-haskell -> asdf-haskell by @jdx in [#6859](https://github.com/jdx/mise/pull/6859)
8+
9+
### 🚀 Features
10+
11+
- **(cli)** switch manpage generation from clap_mangen to usage by @jdx in [#6868](https://github.com/jdx/mise/pull/6868)
12+
- **(task)** add selective stream suppression for silent configuration by @jdx in [#6851](https://github.com/jdx/mise/pull/6851)
13+
14+
### 🐛 Bug Fixes
15+
16+
- **(backend)** support platform-specific bin and bin_path configuration by @dragoscirjan in [#6853](https://github.com/jdx/mise/pull/6853)
17+
- **(task)** resolve aliases correctly for monorepo tasks by @jdx in [#6857](https://github.com/jdx/mise/pull/6857)
18+
- **(task)** prevent MISE_TASK_OUTPUT from propagating to nested tasks by @jdx in [#6860](https://github.com/jdx/mise/pull/6860)
19+
- **(tasks)** simplify task command display to show only first line by @jdx in [#6863](https://github.com/jdx/mise/pull/6863)
20+
- **(tasks)** implement smart flag routing for task arguments by @jdx in [#6861](https://github.com/jdx/mise/pull/6861)
21+
- **(xonsh)** prevent KeyError when activating in nested shells by @jdx in [#6856](https://github.com/jdx/mise/pull/6856)
22+
- Don't set empty env var if decryption fails with age.strict=false by @iamkroot in [#6847](https://github.com/jdx/mise/pull/6847)
23+
24+
### 🚜 Refactor
25+
26+
- **(task)** split run.rs into modular task execution pipeline by @jdx in [#6852](https://github.com/jdx/mise/pull/6852)
27+
28+
### New Contributors
29+
30+
- @dragoscirjan made their first contribution in [#6853](https://github.com/jdx/mise/pull/6853)
31+
332
## [2025.11.1](https://github.com/jdx/mise/compare/v2025.11.0..v2025.11.1) - 2025-11-01
433

534
### 📦 Registry

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
@@ -3,7 +3,7 @@ members = ["crates/vfox", "crates/aqua-registry"]
33

44
[package]
55
name = "mise"
6-
version = "2025.11.1"
6+
version = "2025.11.2"
77
edition = "2024"
88
description = "The front-end to your dev env"
99
authors = ["Jeff Dickey (@jdx)"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
5555
```sh-session
5656
$ curl https://mise.run | sh
5757
$ ~/.local/bin/mise --version
58-
2025.11.1 macos-arm64 (a1b2d3e 2025-11-01)
58+
2025.11.2 macos-arm64 (a1b2d3e 2025-11-02)
5959
```
6060

6161
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_2025_11_1.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_2.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_2025_11_1.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2025_11_2.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_2025_11_1.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2025_11_2.spec"
1212
if not test -f "$spec_file"
1313
mise usage | string collect > "$spec_file"
1414
end

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 = "2025.11.1";
5+
version = "2025.11.2";
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: 2025.11.1
3+
Version: 2025.11.2
44
Release: 1
55
URL: https://github.com/jdx/mise/
66
Group: System

snapcraft.yaml

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

1010
name: mise
1111
title: mise-en-place
12-
version: "2025.11.1"
12+
version: "2025.11.2"
1313
summary: dev tools, env vars, task runner
1414
description: |
1515
dev tools, env vars, task runner

0 commit comments

Comments
 (0)