aboutsummaryrefslogtreecommitdiffstats
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 bb25827..dca64d8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.24.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.23.0...v1.24.0) (2023-11-26)
+
+
+### Features
+
+* add autotools_ls mapping ([#323](https://github.com/williamboman/mason-lspconfig.nvim/issues/323)) ([a547608](https://github.com/williamboman/mason-lspconfig.nvim/commit/a5476087db0a20c05bd1163e1cd4a29b795e73a7))
+
+
+### Bug Fixes
+
+* **rescriptls:** remove cmd override ([#330](https://github.com/williamboman/mason-lspconfig.nvim/issues/330)) ([748bb58](https://github.com/williamboman/mason-lspconfig.nvim/commit/748bb587889600433ff47847012dc2e05d34bb16))
+
## [1.23.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.22.0...v1.23.0) (2023-11-23)
diff --git a/README.md b/README.md
index 4cdad3c..10e044a 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
<code>:help mason-lspconfig.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v1.23.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.24.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 dbd7eb6..c3a687a 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.23.0" -- x-release-please-version
+M.VERSION = "v1.24.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 23 -- x-release-please-minor
+M.MINOR_VERSION = 24 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M