Skip to content

Commit 197f635

Browse files
chore(main): release 2.0.1 (#1921)
1 parent edd8f7b commit 197f635

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

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

3+
## [2.0.1](https://github.com/mason-org/mason.nvim/compare/v2.0.0...v2.0.1) (2025-07-25)
4+
5+
6+
### Bug Fixes
7+
8+
* **fetch:** add busybox wget support ([#1829](https://github.com/mason-org/mason.nvim/issues/1829)) ([8024d64](https://github.com/mason-org/mason.nvim/commit/8024d64e1330b86044fed4c8494ef3dcd483a67c))
9+
* **pypi:** pass --no-user flag ([#1958](https://github.com/mason-org/mason.nvim/issues/1958)) ([1aceba8](https://github.com/mason-org/mason.nvim/commit/1aceba8bc158b5aaf90649077cad06744bc23ac4))
10+
* **registry:** ensure there's no duplicate registry entries ([#1957](https://github.com/mason-org/mason.nvim/issues/1957)) ([3501b0f](https://github.com/mason-org/mason.nvim/commit/3501b0f96d9f2f878b1947cf3614bc02d053a0c0))
11+
* **spawn:** fix calling vim.fn when inside fast event loop on Windows ([#1950](https://github.com/mason-org/mason.nvim/issues/1950)) ([888d6ee](https://github.com/mason-org/mason.nvim/commit/888d6ee499d8089a3a4be4309d239d6be1c1e6c0))
12+
* **spawn:** fix locating exepath on Windows systems using a Unix `'shell'` ([#1991](https://github.com/mason-org/mason.nvim/issues/1991)) ([edd8f7b](https://github.com/mason-org/mason.nvim/commit/edd8f7bce8f86465349b24e235718eb3ea52878d))
13+
314
## [2.0.0](https://github.com/mason-org/mason.nvim/compare/v1.11.0...v2.0.0) (2025-05-06)
415

516
This release has been an ongoing effort for quite some time now and is now ready for release. Most users should not

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.0</sup> <!-- x-release-please-version -->
19+
<sup>Latest version: v2.0.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.0.0" -- x-release-please-version
3+
M.VERSION = "v2.0.1" -- x-release-please-version
44
M.MAJOR_VERSION = 2 -- x-release-please-major
55
M.MINOR_VERSION = 0 -- 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)