From 0636abb068ade36e95d996e3fb89d69f4340dc44 Mon Sep 17 00:00:00 2001
From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com>
Date: Tue, 14 May 2024 09:24:57 +0200
Subject: [PATCH] chore(main): release 1.10.1
---
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 893781537..adfdcad39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog
+## [1.10.1](https://github.com/williamboman/mason.nvim/compare/v1.10.0...v1.10.1) (2024-05-14)
+
+
+### 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))
+* **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..cc1fec76f 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
:help mason.nvim
- Latest version: v1.10.0 + Latest version: v1.10.1
# Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index bb4a97c2b..4a25a8b0c 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.10.1" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major M.MINOR_VERSION = 10 -- x-release-please-minor -M.PATCH_VERSION = 0 -- x-release-please-patch +M.PATCH_VERSION = 1 -- x-release-please-patch return M