aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2026-05-22 20:19:38 +0200
committerGitHub <noreply@github.com>2026-05-22 20:19:38 +0200
commitbb639d4bf385a4d89f478b83af4d770be05ab7eb (patch)
tree72c585889655849750bfcc317dd4af46744cfea7
parentfeat: add support for socket.dev firewall client (#2088) (diff)
downloadmason-main.tar
mason-main.tar.gz
mason-main.tar.bz2
mason-main.tar.lz
mason-main.tar.xz
mason-main.tar.zst
mason-main.zip
chore(main): release 2.3.0 (#2072)HEADv2.3.0stablemain
-rw-r--r--CHANGELOG.md18
-rw-r--r--README.md2
-rw-r--r--lua/mason/version.lua6
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 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v2.2.1</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v2.3.0</sup> <!-- x-release-please-version -->
</p>
## 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