diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2024-01-29 07:29:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-29 07:29:49 +0100 |
| commit | c43eeb5614a09dc17c03a7fb49de2e05de203924 (patch) | |
| tree | f4fdc7b734903730ca7e4348f6fb6a89ba35dd5b | |
| parent | fix(pypi): fix variable shadowing (#1610) (diff) | |
| download | mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar.gz mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar.bz2 mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar.lz mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar.xz mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.tar.zst mason-c43eeb5614a09dc17c03a7fb49de2e05de203924.zip | |
chore(main): release 1.10.0 (#1605)v1.10.0
| -rw-r--r-- | CHANGELOG.md | 15 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason/version.lua | 4 |
3 files changed, 18 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a84306b..89378153 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/lua/mason/version.lua b/lua/mason/version.lua index cbab89ce..bb4a97c2 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -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 |
