aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md21
-rw-r--r--README.md2
-rw-r--r--lua/mason-lspconfig/version.lua4
3 files changed, 24 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a12c463..7fa1520 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,26 @@
# Changelog
+## [2.1.0](https://github.com/mason-org/mason-lspconfig.nvim/compare/v2.0.0...v2.1.0) (2025-07-29)
+
+
+### Features
+
+* **health:** add healthcheck ([#564](https://github.com/mason-org/mason-lspconfig.nvim/issues/564)) ([d24b3f1](https://github.com/mason-org/mason-lspconfig.nvim/commit/d24b3f1612e53f9d54d866b16bedab51813f2bf1))
+* **health:** add mason version check ([#569](https://github.com/mason-org/mason-lspconfig.nvim/issues/569)) ([67da97f](https://github.com/mason-org/mason-lspconfig.nvim/commit/67da97f8c2fd12d05427bb485ce07ee6418e0a51))
+
+
+### Bug Fixes
+
+* remove omnisharp configuration ([#556](https://github.com/mason-org/mason-lspconfig.nvim/issues/556)) ([c5fba52](https://github.com/mason-org/mason-lspconfig.nvim/commit/c5fba52548ff0722ffef127b0859d761a8118099))
+* rename `volar` to `vue_ls` ([#561](https://github.com/mason-org/mason-lspconfig.nvim/issues/561)) ([828da0e](https://github.com/mason-org/mason-lspconfig.nvim/commit/828da0e8dd132954f36e01a72146b0ddd1860236))
+* **vue_ls:** adopt `vue_ls` v3 ([#588](https://github.com/mason-org/mason-lspconfig.nvim/issues/588)) ([c43778f](https://github.com/mason-org/mason-lspconfig.nvim/commit/c43778fafa9bc2e450a712bf6c4c8ac1a09c1b84))
+
+
+### Performance Improvements
+
+* cache registry specs ([#598](https://github.com/mason-org/mason-lspconfig.nvim/issues/598)) ([8465e6e](https://github.com/mason-org/mason-lspconfig.nvim/commit/8465e6e752f2217988887ead42a053dcf74ade54))
+* host pre-compiled filetype mappings ([#555](https://github.com/mason-org/mason-lspconfig.nvim/issues/555)) ([1d67304](https://github.com/mason-org/mason-lspconfig.nvim/commit/1d6730459c42f591602500da994f01ae43a97dbc))
+
## [2.0.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.32.0...v2.0.0) (2025-05-06)
This release adds support for the new native LSP configuration mechanism (see `vim.lsp.config`) added in Neovim v0.11.
diff --git a/README.md b/README.md
index 7f40c91..be7624a 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
<code>:help mason-lspconfig.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v2.0.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v2.1.0</sup> <!-- x-release-please-version -->
</p>
## Table of Contents
diff --git a/lua/mason-lspconfig/version.lua b/lua/mason-lspconfig/version.lua
index bed10a0..5a011e0 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v2.0.0" -- x-release-please-version
+M.VERSION = "v2.1.0" -- x-release-please-version
M.MAJOR_VERSION = 2 -- x-release-please-major
-M.MINOR_VERSION = 0 -- x-release-please-minor
+M.MINOR_VERSION = 1 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M