aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--README.md2
-rw-r--r--lua/mason/version.lua4
3 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 976e72b0..ae01775d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## [2.2.0](https://github.com/mason-org/mason.nvim/compare/v2.1.0...v2.2.0) (2026-01-07)
+
+
+### Features
+
+* add support for removal of packages from a registry ([#2052](https://github.com/mason-org/mason.nvim/issues/2052)) ([69862d6](https://github.com/mason-org/mason.nvim/commit/69862d6c8dbe215489c3e48e624ff25f44437e55))
+
+
+### Bug Fixes
+
+* **installer:** attempt to recover from known fs error while finalizing installation on some file systems ([#1933](https://github.com/mason-org/mason.nvim/issues/1933)) ([198f075](https://github.com/mason-org/mason.nvim/commit/198f07572c0014774fb87371946e0f03b4908bce))
+* **installer:** update cwd after uv_fs_rename() was successful ([#2033](https://github.com/mason-org/mason.nvim/issues/2033)) ([57e5a8a](https://github.com/mason-org/mason.nvim/commit/57e5a8addb8c71fb063ee4acda466c7cf6ad2800))
+
## [2.1.0](https://github.com/mason-org/mason.nvim/compare/v2.0.1...v2.1.0) (2025-09-30)
diff --git a/README.md b/README.md
index 9fa9f690..c22e2345 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v2.1.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v2.2.0</sup> <!-- x-release-please-version -->
</p>
## Table of Contents
diff --git a/lua/mason/version.lua b/lua/mason/version.lua
index 5a011e0a..cf094f30 100644
--- a/lua/mason/version.lua
+++ b/lua/mason/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v2.1.0" -- x-release-please-version
+M.VERSION = "v2.2.0" -- x-release-please-version
M.MAJOR_VERSION = 2 -- x-release-please-major
-M.MINOR_VERSION = 1 -- x-release-please-minor
+M.MINOR_VERSION = 2 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M