From c43eeb5614a09dc17c03a7fb49de2e05de203924 Mon Sep 17 00:00:00 2001
From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com>
Date: Mon, 29 Jan 2024 07:29:49 +0100
Subject: [PATCH] chore(main): release 1.10.0 (#1605)
---
CHANGELOG.md | 15 +++++++++++++++
README.md | 2 +-
lua/mason/version.lua | 4 ++--
3 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a84306bd..893781537 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)
diff --git a/README.md b/README.md
index 9824b6350..9e33b653c 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
:help mason.nvim
- Latest version: v1.9.0 + Latest version: v1.10.0
# Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index cbab89ce0..bb4a97c2b 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