aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2023-09-28 21:12:37 +0200
committerGitHub <noreply@github.com>2023-09-28 19:12:37 +0000
commitd4870bb95b57b2716fc6d393fd2fd76c68dfe238 (patch)
tree18bfcaca4f60f92a95863a9fecc5ffd898ac80aa
parentfeat: add mutt-language-server support (#283) (diff)
downloadmason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar.gz
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar.bz2
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar.lz
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar.xz
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.tar.zst
mason-lspconfig-d4870bb95b57b2716fc6d393fd2fd76c68dfe238.zip
chore(main): release 1.17.0 (#284)v1.17.0
-rw-r--r--CHANGELOG.md8
-rw-r--r--README.md2
-rw-r--r--lua/mason-lspconfig/version.lua4
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c007506..78a87e7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## [1.17.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.16.0...v1.17.0) (2023-09-28)
+
+
+### Features
+
+* add mutt-language-server support ([#283](https://github.com/williamboman/mason-lspconfig.nvim/issues/283)) ([517924a](https://github.com/williamboman/mason-lspconfig.nvim/commit/517924aba919f2b2cc149969195c26cd4fd43b7d))
+* add templ support ([#282](https://github.com/williamboman/mason-lspconfig.nvim/issues/282)) ([80c4262](https://github.com/williamboman/mason-lspconfig.nvim/commit/80c4262a62dfc70526e4dbddc787a2185634f312))
+
## [1.16.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.15.0...v1.16.0) (2023-09-14)
diff --git a/README.md b/README.md
index 9e3ae0f..a055b43 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.16.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.17.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 fa50611..54205fb 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.16.0" -- x-release-please-version
+M.VERSION = "v1.17.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 16 -- x-release-please-minor
+M.MINOR_VERSION = 17 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M