Skip to content

Commit c43eeb5

Browse files
chore(main): release 1.10.0 (#1605)
1 parent aa550fb commit c43eeb5

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
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+
## [1.10.0](https://github.com/williamboman/mason.nvim/compare/v1.9.0...v1.10.0) (2024-01-29)
4+
5+
6+
### Features
7+
8+
* don't use vim.g.python3_host_prog as a candidate for python ([#1606](https://github.com/williamboman/mason.nvim/issues/1606)) ([bce96d2](https://github.com/williamboman/mason.nvim/commit/bce96d2fd483e71826728c6f9ac721fc9dd7d2cf))
9+
* **pypi:** attempt more python3 candidates ([#1608](https://github.com/williamboman/mason.nvim/issues/1608)) ([dcd0ea3](https://github.com/williamboman/mason.nvim/commit/dcd0ea30ccfc7d47e879878d1270d6847a519181))
10+
11+
12+
### Bug Fixes
13+
14+
* **golang:** fix fetching package versions for packages containing subpath specifier ([#1607](https://github.com/williamboman/mason.nvim/issues/1607)) ([9c94168](https://github.com/williamboman/mason.nvim/commit/9c9416817c9f4e6f333c749327a1ed5355cfab61))
15+
* **pypi:** fix variable shadowing ([#1610](https://github.com/williamboman/mason.nvim/issues/1610)) ([aa550fb](https://github.com/williamboman/mason.nvim/commit/aa550fb0649643eee89d5e64c67f81916e88a736))
16+
* **ui:** don't indent empty lines ([#1597](https://github.com/williamboman/mason.nvim/issues/1597)) ([c7e6705](https://github.com/williamboman/mason.nvim/commit/c7e67059bb8ce7e126263471645c531d961b5e1d))
17+
318
## [1.9.0](https://github.com/williamboman/mason.nvim/compare/v1.8.3...v1.9.0) (2024-01-06)
419

520

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<code>:help mason.nvim</code>
1515
</p>
1616
<p align="center">
17-
<sup>Latest version: v1.9.0</sup> <!-- x-release-please-version -->
17+
<sup>Latest version: v1.10.0</sup> <!-- x-release-please-version -->
1818
</p>
1919

2020
# 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 = "v1.9.0" -- x-release-please-version
3+
M.VERSION = "v1.10.0" -- x-release-please-version
44
M.MAJOR_VERSION = 1 -- x-release-please-major
5-
M.MINOR_VERSION = 9 -- x-release-please-minor
5+
M.MINOR_VERSION = 10 -- x-release-please-minor
66
M.PATCH_VERSION = 0 -- x-release-please-patch
77

88
return M

0 commit comments

Comments
 (0)