Skip to content

Commit 6eed69e

Browse files
committed
chore: release 2026.4.20
1 parent 682ea06 commit 6eed69e

14 files changed

Lines changed: 65 additions & 13 deletions

File tree

CHANGELOG.md

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

3+
## [2026.4.20](https://github.com/jdx/mise/compare/v2026.4.19..v2026.4.20) - 2026-04-23
4+
5+
### 📦️ Dependency Updates
6+
7+
- bump communique to 1.0.2 by @jdx in [#9313](https://github.com/jdx/mise/pull/9313)
8+
9+
### Chore
10+
11+
- **(ci)** remove cargo-vendor install from ppa publish by @jdx in [#9312](https://github.com/jdx/mise/pull/9312)
12+
13+
### 📦 Aqua Registry Updates
14+
15+
#### New Packages (2)
16+
17+
- [`expert-lsp/expert`](https://github.com/expert-lsp/expert)
18+
- [`grafana/gcx`](https://github.com/grafana/gcx)
19+
320
## [2026.4.19](https://github.com/jdx/mise/compare/v2026.4.18..v2026.4.19) - 2026-04-22
421

522
### 🚀 Features

Cargo.lock

Lines changed: 2 additions & 2 deletions
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.4.19"
11+
version = "2026.4.20"
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.4.19 macos-arm64 (2026-04-22)
67+
2026.4.20 macos-arm64 (2026-04-23)
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_4_19.spec"
26+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_20.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_4_19.spec"
12+
local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_4_20.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_4_19.spec"
11+
set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_4_20.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_4_19.kdl"
13+
$specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_4_20.kdl"
1414

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

crates/aqua-registry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aqua-registry"
3-
version = "2026.4.8"
3+
version = "2026.4.9"
44
edition = "2024"
55
description = "Aqua registry backend for mise"
66
authors = ["Jeff Dickey (@jdx)"]

crates/aqua-registry/aqua-registry/pkgs/elixir-lang/expert/registry.yaml renamed to crates/aqua-registry/aqua-registry/pkgs/expert-lsp/expert/registry.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
22
packages:
33
- type: github_release
4-
repo_owner: elixir-lang
4+
repo_owner: expert-lsp
55
repo_name: expert
6+
aliases:
7+
- name: elixir-lang/expert
68
description: Official Elixir Language Server Protocol implementation
79
version_constraint: "false"
810
version_overrides:

0 commit comments

Comments
 (0)