Skip to content

Commit ad7146a

Browse files
chore(main): release 2.1.0 (#1996)
1 parent a83eabd commit ad7146a

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

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

3+
## [2.1.0](https://github.com/mason-org/mason.nvim/compare/v2.0.1...v2.1.0) (2025-09-30)
4+
5+
6+
### Features
7+
8+
* **compiler:** make `supported_platforms` a universal source field ([#2002](https://github.com/mason-org/mason.nvim/issues/2002)) ([7dc4fac](https://github.com/mason-org/mason.nvim/commit/7dc4facca9702f95353d5a1f87daf23d78e31c2a))
9+
10+
11+
### Bug Fixes
12+
13+
* **process:** close check handles ([#1995](https://github.com/mason-org/mason.nvim/issues/1995)) ([a1fbecc](https://github.com/mason-org/mason.nvim/commit/a1fbecc0fd76300e8fe84879fb1531f35cf7b018))
14+
* **pypi:** add support for "compatible release" (~=) PEP440 expressions ([#2000](https://github.com/mason-org/mason.nvim/issues/2000)) ([9e25c98](https://github.com/mason-org/mason.nvim/commit/9e25c98d4826998460926f8c5c2284848d80ae89))
15+
* **spawn:** always expand executable path on Windows ([#2021](https://github.com/mason-org/mason.nvim/issues/2021)) ([a83eabd](https://github.com/mason-org/mason.nvim/commit/a83eabdc8c49c0c93bf5bb162fa3b57404a9d095))
16+
* **ui:** only set border to none if `'winborder'` doesn't exist ([#1984](https://github.com/mason-org/mason.nvim/issues/1984)) ([3671ab0](https://github.com/mason-org/mason.nvim/commit/3671ab0d40aa5bd24b1686562bd0a23391ecf76a))
17+
318
## [2.0.1](https://github.com/mason-org/mason.nvim/compare/v2.0.0...v2.0.1) (2025-07-25)
419

520

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.0.1</sup> <!-- x-release-please-version -->
19+
<sup>Latest version: v2.1.0</sup> <!-- x-release-please-version -->
2020
</p>
2121

2222
## Table of Contents

lua/mason/version.lua

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

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

88
return M

0 commit comments

Comments
 (0)