Skip to content

Commit

Permalink
chore(main): release 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
williambotman committed May 12, 2024
1 parent 1b3d604 commit cafa228
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.10.1](https://github.com/williamboman/mason.nvim/compare/v1.10.0...v1.10.1) (2024-05-12)


### 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))


### 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)


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.10.0</sup> <!-- x-release-please-version -->
<sup>Latest version: v1.10.1</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.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

0 comments on commit cafa228

Please sign in to comment.