Skip to content

Commit 7479e02

Browse files
committed
chore(main): release 2.1.1
1 parent 57e5a8a commit 7479e02

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [2.1.1](https://github.com/mason-org/mason.nvim/compare/v2.1.0...v2.1.1) (2025-11-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **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))
9+
* **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))
10+
311
## [2.1.0](https://github.com/mason-org/mason.nvim/compare/v2.0.1...v2.1.0) (2025-09-30)
412

513

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<code>:help mason.nvim</code>
1717
</p>
1818
<p align="center">
19-
<sup>Latest version: v2.1.0</sup> <!-- x-release-please-version -->
19+
<sup>Latest version: v2.1.1</sup> <!-- x-release-please-version -->
2020
</p>
2121

2222
## Table of Contents

lua/mason/version.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
local M = {}
22

3-
M.VERSION = "v2.1.0" -- x-release-please-version
3+
M.VERSION = "v2.1.1" -- x-release-please-version
44
M.MAJOR_VERSION = 2 -- x-release-please-major
55
M.MINOR_VERSION = 1 -- x-release-please-minor
6-
M.PATCH_VERSION = 0 -- x-release-please-patch
6+
M.PATCH_VERSION = 1 -- x-release-please-patch
77

88
return M

0 commit comments

Comments
 (0)