aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2023-04-25 06:17:42 +0200
committerGitHub <noreply@github.com>2023-04-25 06:17:42 +0200
commit22d17951315e22e602912c9629b97d183fb90d16 (patch)
tree1765335df266086702e28ae39474a79b9d5eea2b
parentdocs: update badges (#210) (diff)
downloadmason-lspconfig-1.1.0.tar
mason-lspconfig-1.1.0.tar.gz
mason-lspconfig-1.1.0.tar.bz2
mason-lspconfig-1.1.0.tar.lz
mason-lspconfig-1.1.0.tar.xz
mason-lspconfig-1.1.0.tar.zst
mason-lspconfig-1.1.0.zip
chore(main): release 1.1.0 (#209)v1.1.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 5b9a0b8..e2cb352 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.1.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.0.1...v1.1.0) (2023-04-25)
+
+
+### Features
+
+* allow handlers to be passed via `.setup()` ([#208](https://github.com/williamboman/mason-lspconfig.nvim/issues/208)) ([eea1d22](https://github.com/williamboman/mason-lspconfig.nvim/commit/eea1d22f203083e3d41757ef982ab2cc74fce089))
+
## [1.0.1](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.0.0...v1.0.1) (2023-04-22)
diff --git a/README.md b/README.md
index 9f0f11d..d456072 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.0.1</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.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 d61daa2..149124e 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.0.1" -- x-release-please-version
+M.VERSION = "v1.1.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 0 -- x-release-please-minor
-M.PATCH_VERSION = 1 -- x-release-please-patch
+M.MINOR_VERSION = 1 -- x-release-please-minor
+M.PATCH_VERSION = 0 -- x-release-please-patch
return M