diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2024-04-23 12:23:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-23 10:23:12 +0000 |
| commit | 1a14770dc8c7cb29643870ac79788eec6f7ce1f8 (patch) | |
| tree | 5b418f65c2fb4cc030f57f06a30ad863552c6c4a | |
| parent | feat: add earthlyls configuration (#397) (diff) | |
| download | mason-lspconfig-1.28.0.tar mason-lspconfig-1.28.0.tar.gz mason-lspconfig-1.28.0.tar.bz2 mason-lspconfig-1.28.0.tar.lz mason-lspconfig-1.28.0.tar.xz mason-lspconfig-1.28.0.tar.zst mason-lspconfig-1.28.0.zip | |
chore(main): release 1.28.0 (#383)v1.28.0
| -rw-r--r-- | CHANGELOG.md | 20 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason-lspconfig/version.lua | 4 |
3 files changed, 23 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ee3886b..2d27336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.28.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.27.0...v1.28.0) (2024-04-23) + + +### Features + +* add `coq_lsp` support ([#393](https://github.com/williamboman/mason-lspconfig.nvim/issues/393)) ([4b9cbbb](https://github.com/williamboman/mason-lspconfig.nvim/commit/4b9cbbbe34ddcfc4855eca1d0488bbdfb3c3d33b)) +* add `ruff` ([#385](https://github.com/williamboman/mason-lspconfig.nvim/issues/385)) ([7d4fa27](https://github.com/williamboman/mason-lspconfig.nvim/commit/7d4fa27dfe379ec3af289f472e3e410268e56032)) +* add earthlyls configuration ([#397](https://github.com/williamboman/mason-lspconfig.nvim/issues/397)) ([16309c7](https://github.com/williamboman/mason-lspconfig.nvim/commit/16309c79dbcd40c144ec43e4743146f52f771de4)) +* add fennel-ls ([#382](https://github.com/williamboman/mason-lspconfig.nvim/issues/382)) ([9dfcf20](https://github.com/williamboman/mason-lspconfig.nvim/commit/9dfcf2036c223920826140f0151d929a43f9eceb)) +* add gitlab-ci-ls ([#391](https://github.com/williamboman/mason-lspconfig.nvim/issues/391)) ([bc0e758](https://github.com/williamboman/mason-lspconfig.nvim/commit/bc0e7588519b435b3fdf9a04d1d4d0e0ed847837)) +* add lexical ([#389](https://github.com/williamboman/mason-lspconfig.nvim/issues/389)) ([4450968](https://github.com/williamboman/mason-lspconfig.nvim/commit/44509689b9bf3984d729cc264aacb31cb7f41668)) +* add mesonlsp ([#392](https://github.com/williamboman/mason-lspconfig.nvim/issues/392)) ([ce09670](https://github.com/williamboman/mason-lspconfig.nvim/commit/ce09670ff803911720bf3122e42c7f33571eaca1)) +* **lexical:** add default `cmd` for lexical ([#398](https://github.com/williamboman/mason-lspconfig.nvim/issues/398)) ([f3658bf](https://github.com/williamboman/mason-lspconfig.nvim/commit/f3658bfc667df6a0340194a015ac2f31c1e675e0)) +* rename ruby_ls to ruby_lsp ([#395](https://github.com/williamboman/mason-lspconfig.nvim/issues/395)) ([68d4663](https://github.com/williamboman/mason-lspconfig.nvim/commit/68d46635c533ab1439a53f845fd84cad74b0fafe)) + + +### Performance Improvements + +* lazy-require some modules during config ([#387](https://github.com/williamboman/mason-lspconfig.nvim/issues/387)) ([1505b7a](https://github.com/williamboman/mason-lspconfig.nvim/commit/1505b7a70e82d3aa8edef68b4a1b306a06187cb3)) + ## [1.27.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.26.0...v1.27.0) (2024-03-20) @@ -16,7 +16,7 @@ <code>:help mason-lspconfig.nvim</code> </p> <p align="center"> - <sup>Latest version: v1.27.0</sup> <!-- x-release-please-version --> + <sup>Latest version: v1.28.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 715750e..4db648c 100644 --- a/lua/mason-lspconfig/version.lua +++ b/lua/mason-lspconfig/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.27.0" -- x-release-please-version +M.VERSION = "v1.28.0" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major -M.MINOR_VERSION = 27 -- x-release-please-minor +M.MINOR_VERSION = 28 -- x-release-please-minor M.PATCH_VERSION = 0 -- x-release-please-patch return M |
