Skip to content

Commit f9cbcbf

Browse files
committed
chore: release 2025.9.13
1 parent f96394a commit f9cbcbf

File tree

11 files changed

+53
-24
lines changed

11 files changed

+53
-24
lines changed

CHANGELOG.md

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

3+
## [2025.9.13](https://github.com/jdx/mise/compare/v2025.9.12..v2025.9.13) - 2025-09-18
4+
5+
### 📦 Registry
6+
7+
- remove deprecated virtualos by @jdx in [166379f](https://github.com/jdx/mise/commit/166379f71c79fccacfc980dd14d4e18642c7d1e5)
8+
- add trufflehog ([aqua:trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog)) by @risu729 in [#6316](https://github.com/jdx/mise/pull/6316)
9+
10+
### 🐛 Bug Fixes
11+
12+
- **(github)** correctly paginate releases/tags for private repos by @malept in [#6318](https://github.com/jdx/mise/pull/6318)
13+
14+
### 📚 Documentation
15+
16+
- change 'hello.py' to 'main.py' in python.md by @my1e5 in [#6319](https://github.com/jdx/mise/pull/6319)
17+
18+
### New Contributors
19+
20+
- @my1e5 made their first contribution in [#6319](https://github.com/jdx/mise/pull/6319)
21+
322
## [2025.9.12](https://github.com/jdx/mise/compare/v2025.9.11..v2025.9.12) - 2025-09-16
423

524
### 🐛 Bug Fixes

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.9.12"
6+
version = "2025.9.13"
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
@@ -40,7 +40,7 @@ See [Getting started](https://mise.jdx.dev/getting-started.html) for more option
4040
```sh-session
4141
$ curl https://mise.run | sh
4242
$ ~/.local/bin/mise --version
43-
2025.9.12 macos-arm64 (a1b2d3e 2025-09-16)
43+
2025.9.13 macos-arm64 (a1b2d3e 2025-09-18)
4444
```
4545

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

completions/_mise

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ _mise() {
2727
zstyle ":completion:${curcontext}:" cache-policy _usage_mise_cache_policy
2828
fi
2929

30-
if ( [[ -z "${_usage_spec_mise_2025_9_12:-}" ]] || _cache_invalid _usage_spec_mise_2025_9_12 ) \
31-
&& ! _retrieve_cache _usage_spec_mise_2025_9_12;
30+
if ( [[ -z "${_usage_spec_mise_2025_9_13:-}" ]] || _cache_invalid _usage_spec_mise_2025_9_13 ) \
31+
&& ! _retrieve_cache _usage_spec_mise_2025_9_13;
3232
then
3333
spec="$(mise usage)"
34-
_store_cache _usage_spec_mise_2025_9_12 spec
34+
_store_cache _usage_spec_mise_2025_9_13 spec
3535
fi
3636

3737
_arguments "*: :(($(usage complete-word --shell zsh -s "$spec" -- "${words[@]}" )))"

completions/mise.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ _mise() {
66
return 1
77
fi
88

9-
if [[ -z ${_usage_spec_mise_2025_9_12:-} ]]; then
10-
_usage_spec_mise_2025_9_12="$(mise usage)"
9+
if [[ -z ${_usage_spec_mise_2025_9_13:-} ]]; then
10+
_usage_spec_mise_2025_9_13="$(mise usage)"
1111
fi
1212

1313
local cur prev words cword was_split comp_args
1414
_comp_initialize -n : -- "$@" || return
1515
# shellcheck disable=SC2207
16-
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_9_12}" --cword="$cword" -- "${words[@]}")"
16+
_comp_compgen -- -W "$(usage complete-word --shell bash -s "${_usage_spec_mise_2025_9_13}" --cword="$cword" -- "${words[@]}")"
1717
_comp_ltrim_colon_completions "$cur"
1818
# shellcheck disable=SC2181
1919
if [[ $? -ne 0 ]]; then

completions/mise.fish

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ if ! command -v usage &> /dev/null
66
return 1
77
end
88

9-
if ! set -q _usage_spec_mise_2025_9_12
10-
set -g _usage_spec_mise_2025_9_12 (mise usage | string collect)
9+
if ! set -q _usage_spec_mise_2025_9_13
10+
set -g _usage_spec_mise_2025_9_13 (mise usage | string collect)
1111
end
1212
set -l tokens
1313
if commandline -x >/dev/null 2>&1
14-
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_12" -- (commandline -xpc) (commandline -t))'
14+
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_13" -- (commandline -xpc) (commandline -t))'
1515
else
16-
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_12" -- (commandline -opc) (commandline -t))'
16+
complete -xc mise -a '(usage complete-word --shell fish -s "$_usage_spec_mise_2025_9_13" -- (commandline -opc) (commandline -t))'
1717
end
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
2+
packages:
3+
- type: github_release
4+
repo_owner: rmitchellscott
5+
repo_name: rm-version-switcher
6+
description: A beginner-friendly application for switching between installed reMarkable OS versions with an interactive interface
7+
version_constraint: "false"
8+
version_overrides:
9+
- version_constraint: "true"
10+
asset: rm-version-switcher-aarch64.tar.gz
11+
files:
12+
- name: rm-version-switcher
13+
src: rm-version-switcher-aarch64
14+
supported_envs:
15+
- linux/arm64

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.9.12";
5+
version = "2025.9.13";
66

77
src = lib.cleanSource ./.;
88

mise.lock

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,13 @@ size = 12793347
105105
url = "https://github.com/cli/cli/releases/download/v2.62.0/gh_2.62.0_macOS_arm64.zip"
106106

107107
[[tools.hk]]
108-
version = "1.12.1"
108+
version = "1.14.0"
109109
backend = "aqua:jdx/hk"
110110

111111
[tools.hk.platforms.linux-x64]
112-
checksum = "blake3:2e8d3a27beabb40355f7deb89aa02599769a31513af1df88b6f2509f23274f2d"
113-
size = 6751013
114-
url = "https://github.com/jdx/hk/releases/download/v1.12.1/hk-x86_64-unknown-linux-gnu.tar.gz"
115-
116-
[tools.hk.platforms.macos-arm64]
117-
checksum = "blake3:1d4153f34bc93216980171a07b0e5441d4e99776506f95ca9c3d63603a9d044c"
118-
size = 5854360
119-
url = "https://github.com/jdx/hk/releases/download/v1.12.1/hk-aarch64-apple-darwin.tar.gz"
112+
checksum = "blake3:a02f574ee03c0004869167cc69441b3373dab6aca36140a894808d2133a74fc3"
113+
size = 6950380
114+
url = "https://github.com/jdx/hk/releases/download/v1.14.0/hk-x86_64-unknown-linux-gnu.tar.gz"
120115

121116
[[tools.jq]]
122117
version = "1.8.1"

0 commit comments

Comments
 (0)