aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2023-10-11 20:19:49 +0200
committerGitHub <noreply@github.com>2023-10-11 20:19:49 +0200
commit397273083f988c1a17acf3816947cd198338e700 (patch)
treeb8d7ae5a894490486239aeff7e97faf5c33c9886
parentchore(docs): add `swift_mesonls` to README (#296) (diff)
downloadmason-lspconfig-1.18.0.tar
mason-lspconfig-1.18.0.tar.gz
mason-lspconfig-1.18.0.tar.bz2
mason-lspconfig-1.18.0.tar.lz
mason-lspconfig-1.18.0.tar.xz
mason-lspconfig-1.18.0.tar.zst
mason-lspconfig-1.18.0.zip
chore(main): release 1.18.0 (#297)v1.18.0
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md2
-rw-r--r--lua/mason-lspconfig/version.lua6
3 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1bf6498..db3655a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.18.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.17.1...v1.18.0) (2023-10-11)
+
+
+### Features
+
+* add support for swift-mesonlsp ([#295](https://github.com/williamboman/mason-lspconfig.nvim/issues/295)) ([6e4a086](https://github.com/williamboman/mason-lspconfig.nvim/commit/6e4a0865413a6bac57b090a871202b3c1d41296c))
+
## [1.17.1](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.17.0...v1.17.1) (2023-09-29)
diff --git a/README.md b/README.md
index f68fd8f..50d6fcb 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.17.1</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.18.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 6879666..5fe3b5f 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.17.1" -- x-release-please-version
+M.VERSION = "v1.18.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 17 -- x-release-please-minor
-M.PATCH_VERSION = 1 -- x-release-please-patch
+M.MINOR_VERSION = 18 -- x-release-please-minor
+M.PATCH_VERSION = 0 -- x-release-please-patch
return M