summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md12
-rw-r--r--README.md2
-rw-r--r--lua/mason-lspconfig/version.lua4
3 files changed, 15 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb0c1c7..9c9dc0f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [2.3.0](https://github.com/mason-org/mason-lspconfig.nvim/compare/v2.2.0...v2.3.0) (2026-06-11)
+
+
+### Features
+
+* add mapping Vespa Language Server ([#676](https://github.com/mason-org/mason-lspconfig.nvim/issues/676)) ([0b278d7](https://github.com/mason-org/mason-lspconfig.nvim/commit/0b278d7f91781675df67239f32e769e83f1b12ac))
+
+
+### Bug Fixes
+
+* **julials:** ensure Julia environment is set before julia-lsp is run ([#674](https://github.com/mason-org/mason-lspconfig.nvim/issues/674)) ([2f8e8bb](https://github.com/mason-org/mason-lspconfig.nvim/commit/2f8e8bb7440f7d326cee1ba5b489532b29d3a35e))
+
## [2.2.0](https://github.com/mason-org/mason-lspconfig.nvim/compare/v2.1.0...v2.2.0) (2026-04-23)
diff --git a/README.md b/README.md
index be7624a..29616c3 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.1.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v2.3.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 5a011e0..8910da0 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v2.1.0" -- x-release-please-version
+M.VERSION = "v2.3.0" -- x-release-please-version
M.MAJOR_VERSION = 2 -- x-release-please-major
-M.MINOR_VERSION = 1 -- x-release-please-minor
+M.MINOR_VERSION = 3 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M