diff options
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason-lspconfig/version.lua | 6 |
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) @@ -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 |
