From bb639d4bf385a4d89f478b83af4d770be05ab7eb Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Fri, 22 May 2026 20:19:38 +0200 Subject: chore(main): release 2.3.0 (#2072) --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- lua/mason/version.lua | 6 +++--- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2e04911..19e25b60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [2.3.0](https://github.com/mason-org/mason.nvim/compare/v2.2.1...v2.3.0) (2026-05-22) + + +### Features + +* add support for socket.dev firewall client ([#2088](https://github.com/mason-org/mason.nvim/issues/2088)) ([24e77d5](https://github.com/mason-org/mason.nvim/commit/24e77d5289db0f7b6f4b405683047315b66dc75b)) +* add the infrastructure to support "system" packages ([#2085](https://github.com/mason-org/mason.nvim/issues/2085)) ([8e921c2](https://github.com/mason-org/mason.nvim/commit/8e921c2b68571e978db5d4d3fef9c9a7f8755473)) +* **npm:** add `install_args` setting ([#1581](https://github.com/mason-org/mason.nvim/issues/1581)) ([8fdc4b0](https://github.com/mason-org/mason.nvim/commit/8fdc4b0a563768c04476042b9cc765c149560bbe)) +* **registry:** add registry_cache setting for controlling cache behaviour ([#2089](https://github.com/mason-org/mason.nvim/issues/2089)) ([cbf8d28](https://github.com/mason-org/mason.nvim/commit/cbf8d285e1462dd24acf3507817be2bbcb035919)) + + +### Bug Fixes + +* actually emit the receipt in uninstall event payloads ([#2071](https://github.com/mason-org/mason.nvim/issues/2071)) ([b03fb0f](https://github.com/mason-org/mason.nvim/commit/b03fb0f20bc1d43daf558cda981a2be22e73ac42)) +* **powershell:** conform to single quotes ([#1740](https://github.com/mason-org/mason.nvim/issues/1740)) ([12ddd18](https://github.com/mason-org/mason.nvim/commit/12ddd182d9efbdc848b540f16484a583d52da0fb)) +* **pypi:** add python 3.13 and 3.14 to list of fallbacks ([#2081](https://github.com/mason-org/mason.nvim/issues/2081)) ([e54f5bf](https://github.com/mason-org/mason.nvim/commit/e54f5bf5f12c560da31c17eee5b3e1bd369f3ff9)) +* **spawn:** handle cases where PATH env on Windows is not set ([#2080](https://github.com/mason-org/mason.nvim/issues/2080)) ([cb8445f](https://github.com/mason-org/mason.nvim/commit/cb8445f8ce85d957416c106b780efd51c6298f89)) + ## [2.2.1](https://github.com/mason-org/mason.nvim/compare/v2.2.0...v2.2.1) (2026-01-07) diff --git a/README.md b/README.md index 7421c4e5..858c8a90 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ :help mason.nvim

- Latest version: v2.2.1 + Latest version: v2.3.0

## Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index fb051ef4..8910da08 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v2.2.1" -- x-release-please-version +M.VERSION = "v2.3.0" -- x-release-please-version M.MAJOR_VERSION = 2 -- x-release-please-major -M.MINOR_VERSION = 2 -- x-release-please-minor -M.PATCH_VERSION = 1 -- x-release-please-patch +M.MINOR_VERSION = 3 -- x-release-please-minor +M.PATCH_VERSION = 0 -- x-release-please-patch return M -- cgit v1.3.1