diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2026-06-11 16:14:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-11 16:14:45 +0200 |
| commit | 2a6940af80375532e5e9e7c1f2fc6319a1b7a69d (patch) | |
| tree | 2f2b5228e410a00e728940ab56668da2bb351d7b | |
| parent | ci: update actions (#2104) (diff) | |
| download | mason-2.3.1.tar mason-2.3.1.tar.gz mason-2.3.1.tar.bz2 mason-2.3.1.tar.lz mason-2.3.1.tar.xz mason-2.3.1.tar.zst mason-2.3.1.zip | |
| -rw-r--r-- | CHANGELOG.md | 8 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason/version.lua | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e25b60..5a7b5611 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.3.1](https://github.com/mason-org/mason.nvim/compare/v2.3.0...v2.3.1) (2026-06-11) + + +### Bug Fixes + +* **fs:** implement rmrf natively via libuv ([#2098](https://github.com/mason-org/mason.nvim/issues/2098)) ([8838e7a](https://github.com/mason-org/mason.nvim/commit/8838e7acf07679fb717246518d2b83cbe3a1078e)) +* **nuget:** also support .cmd shims on Windows ([#2102](https://github.com/mason-org/mason.nvim/issues/2102)) ([16ba83b](https://github.com/mason-org/mason.nvim/commit/16ba83bfc8a25f52bb545134f5bee082b195c460)) + ## [2.3.0](https://github.com/mason-org/mason.nvim/compare/v2.2.1...v2.3.0) (2026-05-22) @@ -16,7 +16,7 @@ <code>:help mason.nvim</code> </p> <p align="center"> - <sup>Latest version: v2.3.0</sup> <!-- x-release-please-version --> + <sup>Latest version: v2.3.1</sup> <!-- x-release-please-version --> </p> ## Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index 8910da08..282af1aa 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v2.3.0" -- x-release-please-version +M.VERSION = "v2.3.1" -- x-release-please-version M.MAJOR_VERSION = 2 -- x-release-please-major M.MINOR_VERSION = 3 -- x-release-please-minor -M.PATCH_VERSION = 0 -- x-release-please-patch +M.PATCH_VERSION = 1 -- x-release-please-patch return M |
