Skip to content

Commit

Permalink
chore(main): release 1.10.0 (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
williambotman committed Jan 29, 2024
1 parent aa550fb commit c43eeb5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.10.0](https://github.com/williamboman/mason.nvim/compare/v1.9.0...v1.10.0) (2024-01-29)


### Features

* 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))
* **pypi:** attempt more python3 candidates ([#1608](https://github.com/williamboman/mason.nvim/issues/1608)) ([dcd0ea3](https://github.com/williamboman/mason.nvim/commit/dcd0ea30ccfc7d47e879878d1270d6847a519181))


### Bug Fixes

* **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))
* **pypi:** fix variable shadowing ([#1610](https://github.com/williamboman/mason.nvim/issues/1610)) ([aa550fb](https://github.com/williamboman/mason.nvim/commit/aa550fb0649643eee89d5e64c67f81916e88a736))
* **ui:** don't indent empty lines ([#1597](https://github.com/williamboman/mason.nvim/issues/1597)) ([c7e6705](https://github.com/williamboman/mason.nvim/commit/c7e67059bb8ce7e126263471645c531d961b5e1d))

## [1.9.0](https://github.com/williamboman/mason.nvim/compare/v1.8.3...v1.9.0) (2024-01-06)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
<sup>Latest version: v1.9.0</sup> <!-- x-release-please-version -->
<sup>Latest version: v1.10.0</sup> <!-- x-release-please-version -->
</p>

# Table of Contents
Expand Down
4 changes: 2 additions & 2 deletions lua/mason/version.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
local M = {}

M.VERSION = "v1.9.0" -- x-release-please-version
M.VERSION = "v1.10.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
M.MINOR_VERSION = 9 -- x-release-please-minor
M.MINOR_VERSION = 10 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch

return M

0 comments on commit c43eeb5

Please sign in to comment.