diff --git a/CHANGELOG.md b/CHANGELOG.md index ce240377c7..a3de138080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [2026.2.7](https://github.com/jdx/mise/compare/v2026.2.6..v2026.2.7) - 2026-02-08 + +### 🚀 Features + +- **(shim)** add native .exe shim mode for Windows by @jdx in [#8045](https://github.com/jdx/mise/pull/8045) + +### 🐛 Bug Fixes + +- **(install)** preserve config options and registry defaults by @jdx in [#8044](https://github.com/jdx/mise/pull/8044) +- **(link)** linked versions override lockfile during resolution by @jdx in [#8050](https://github.com/jdx/mise/pull/8050) +- **(release)** preserve aqua-registry sections in changelog across releases by @jdx in [#8047](https://github.com/jdx/mise/pull/8047) +- ls --all-sources shows duplicate entries by @roele in [#8042](https://github.com/jdx/mise/pull/8042) + +### 📚 Documentation + +- replace "inherit" terminology with config layering by @jdx in [#8046](https://github.com/jdx/mise/pull/8046) + +### 📦 Registry + +- switch oxlint to npm backend by default by @risu729 in [#8038](https://github.com/jdx/mise/pull/8038) +- add orval (npm:orval) by @zdunecki in [#8051](https://github.com/jdx/mise/pull/8051) + +### New Contributors + +- @zdunecki made their first contribution in [#8051](https://github.com/jdx/mise/pull/8051) + ## [2026.2.6](https://github.com/jdx/mise/compare/v2026.2.5..v2026.2.6) - 2026-02-07 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 3c42025f93..a89875a3f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5050,7 +5050,7 @@ dependencies = [ [[package]] name = "mise" -version = "2026.2.6" +version = "2026.2.7" dependencies = [ "age", "aho-corasick", diff --git a/Cargo.toml b/Cargo.toml index 63c5bca8bf..836623d92a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ [package] name = "mise" -version = "2026.2.6" +version = "2026.2.7" edition = "2024" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index d54b819ea9..ee4a878574 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ $ ~/.local/bin/mise --version / / / / / / (__ ) __/_____/ __/ / / /_____/ /_/ / / /_/ / /__/ __/ /_/ /_/ /_/_/____/\___/ \___/_/ /_/ / .___/_/\__,_/\___/\___/ /_/ by @jdx -2026.2.6 macos-arm64 (2026-02-07) +2026.2.7 macos-arm64 (2026-02-08) ``` Hook mise into your shell (pick the right one for your shell): diff --git a/completions/_mise b/completions/_mise index ec80905fdc..ca664a3229 100644 --- a/completions/_mise +++ b/completions/_mise @@ -23,7 +23,7 @@ _mise() { return 1 fi - local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.bash b/completions/mise.bash index 700dadcd28..e6a89e4da3 100644 --- a/completions/mise.bash +++ b/completions/mise.bash @@ -9,7 +9,7 @@ _mise() { local cur prev words cword was_split comp_args _comp_initialize -n : -- "$@" || return - local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_6.spec" + local spec_file="${TMPDIR:-/tmp}/usage__usage_spec_mise_2026_2_7.spec" if [[ ! -f "$spec_file" ]]; then mise usage > "$spec_file" fi diff --git a/completions/mise.fish b/completions/mise.fish index 19c0fc954c..0a4a78aaf0 100644 --- a/completions/mise.fish +++ b/completions/mise.fish @@ -8,7 +8,7 @@ if ! type -p usage &> /dev/null return 1 end set -l tmpdir (if set -q TMPDIR; echo $TMPDIR; else; echo /tmp; end) -set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_2_6.spec" +set -l spec_file "$tmpdir/usage__usage_spec_mise_2026_2_7.spec" if not test -f "$spec_file" mise usage | string collect > "$spec_file" end diff --git a/completions/mise.ps1 b/completions/mise.ps1 index f5cf8cd795..4c98984447 100644 --- a/completions/mise.ps1 +++ b/completions/mise.ps1 @@ -10,7 +10,7 @@ Register-ArgumentCompleter -Native -CommandName 'mise' -ScriptBlock { param($wordToComplete, $commandAst, $cursorPosition) $tmpDir = if ($env:TEMP) { $env:TEMP } else { [System.IO.Path]::GetTempPath() } - $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_2_6.kdl" + $specFile = Join-Path $tmpDir "usage__usage_spec_mise_2026_2_7.kdl" if (-not (Test-Path $specFile)) { mise usage | Out-File -FilePath $specFile -Encoding utf8 diff --git a/default.nix b/default.nix index d4ee0207e7..04d788f1d4 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2026.2.6"; + version = "2026.2.7"; src = lib.cleanSource ./.; diff --git a/docs/.vitepress/stars.data.ts b/docs/.vitepress/stars.data.ts index 15013c7d21..b3e91d49c3 100644 --- a/docs/.vitepress/stars.data.ts +++ b/docs/.vitepress/stars.data.ts @@ -3,7 +3,7 @@ export default { load() { return { - stars: "24.2k", + stars: "24.3k", }; }, }; diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 031ee663df..948cddfdb4 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2026.2.6 +Version: 2026.2.7 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/snapcraft.yaml b/snapcraft.yaml index a203c452de..8737c5f9e8 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -9,7 +9,7 @@ name: mise title: mise-en-place -version: "2026.2.6" +version: "2026.2.7" summary: The front-end to your dev env description: | mise-en-place is a command line tool to manage your development environment.