From 95d3f11029f33c82be2383f62f4a787044a7f6bc Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Sat, 1 Jun 2024 17:18:01 +0200 Subject: [PATCH] chore(main): release 1.11.0 --- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 2 +- lua/mason/version.lua | 4 ++-- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 893781537..8f3fa5186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [1.11.0](https://github.com/williamboman/mason.nvim/compare/v1.10.0...v1.11.0) (2024-06-01) + + +### Features + +* **pypi:** improve resolving suitable python version ([#1725](https://github.com/williamboman/mason.nvim/issues/1725)) ([0950b15](https://github.com/williamboman/mason.nvim/commit/0950b15060067f752fde13a779a994f59516ce3d)) + + +### Bug Fixes + +* avoid calling vim.fn.has inside fast event ([#1705](https://github.com/williamboman/mason.nvim/issues/1705)) ([1b3d604](https://github.com/williamboman/mason.nvim/commit/1b3d60405d1d720b2c4927f19672e9479703b00f)) +* fix usage of deprecated Neovim APIs ([#1703](https://github.com/williamboman/mason.nvim/issues/1703)) ([0f1cb65](https://github.com/williamboman/mason.nvim/commit/0f1cb65f436b769733d18b41572f617a1fb41f62)) +* **health:** support multidigit luarocks version numbers ([#1648](https://github.com/williamboman/mason.nvim/issues/1648)) ([751b1fc](https://github.com/williamboman/mason.nvim/commit/751b1fcbf3d3b783fcf8d48865264a9bcd8f9b10)) +* **pypi:** exclude python3.12 from candidate list ([#1722](https://github.com/williamboman/mason.nvim/issues/1722)) ([f8ce876](https://github.com/williamboman/mason.nvim/commit/f8ce8768f296717c72b3910eee7bd5ac5223cdb9)) +* **registry:** exhaust streaming parser when loading "file:" registries ([#1708](https://github.com/williamboman/mason.nvim/issues/1708)) ([49ff59a](https://github.com/williamboman/mason.nvim/commit/49ff59aded1047a773670651cfa40e76e63c6377)) + + +### Performance Improvements + +* **registry:** significantly improve the "file:" protocol performance ([#1702](https://github.com/williamboman/mason.nvim/issues/1702)) ([098a56c](https://github.com/williamboman/mason.nvim/commit/098a56c385ca3a1a0d4682d129203dda35421b8e)) + ## [1.10.0](https://github.com/williamboman/mason.nvim/compare/v1.9.0...v1.10.0) (2024-01-29) diff --git a/README.md b/README.md index 9e33b653c..ffa8799ee 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ :help mason.nvim

- Latest version: v1.10.0 + Latest version: v1.11.0

# Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index bb4a97c2b..23edb1bdb 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.10.0" -- x-release-please-version +M.VERSION = "v1.11.0" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major -M.MINOR_VERSION = 10 -- x-release-please-minor +M.MINOR_VERSION = 11 -- x-release-please-minor M.PATCH_VERSION = 0 -- x-release-please-patch return M