From 9ae570e206360e47d30b4c35a4550c165f4ea7b7 Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Sat, 11 May 2024 12:02:58 +0200 Subject: [PATCH] chore(main): release 1.29.0 (#410) --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- lua/mason-lspconfig/version.lua | 4 ++-- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d27336ea..4fd786fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.29.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.28.0...v1.29.0) (2024-05-11) + + +### Features + +* add `regols` support ([#403](https://github.com/williamboman/mason-lspconfig.nvim/issues/403)) ([dd615fe](https://github.com/williamboman/mason-lspconfig.nvim/commit/dd615fec891cd1b1ca34eeef4080c3f4cf40d891)) +* add cobol_ls ([#409](https://github.com/williamboman/mason-lspconfig.nvim/issues/409)) ([076de8c](https://github.com/williamboman/mason-lspconfig.nvim/commit/076de8c6e01c9518671fffae56f55cb19b3ac13c)) +* add css-variables-language-server ([#399](https://github.com/williamboman/mason-lspconfig.nvim/issues/399)) ([f7abbd2](https://github.com/williamboman/mason-lspconfig.nvim/commit/f7abbd25c931946b0c8372fa62d198c381183afe)) +* add harper-ls configuration ([#406](https://github.com/williamboman/mason-lspconfig.nvim/issues/406)) ([44688da](https://github.com/williamboman/mason-lspconfig.nvim/commit/44688daeeab7fa2ea06df7138d011099b3925e97)) +* add motoko-lsp support ([#408](https://github.com/williamboman/mason-lspconfig.nvim/issues/408)) ([6c4d744](https://github.com/williamboman/mason-lspconfig.nvim/commit/6c4d744288965a595ccba2b9779d8bebaba9275f)) +* add rust_hdl ([#402](https://github.com/williamboman/mason-lspconfig.nvim/issues/402)) ([e6a3b46](https://github.com/williamboman/mason-lspconfig.nvim/commit/e6a3b46c42f4c2bf2af6c0260334d096bffa6317)) +* add starlark_rust mapping ([#407](https://github.com/williamboman/mason-lspconfig.nvim/issues/407)) ([5278047](https://github.com/williamboman/mason-lspconfig.nvim/commit/52780478e9bdbe212a2ebac20116bc0375fb3dcf)) +* add tinymist ([#405](https://github.com/williamboman/mason-lspconfig.nvim/issues/405)) ([c3168b2](https://github.com/williamboman/mason-lspconfig.nvim/commit/c3168b2a6a09722d4567ef4a37364b9b30bf7f20)) + ## [1.28.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.27.0...v1.28.0) (2024-04-23) diff --git a/README.md b/README.md index 83ae83350..f7d5c767b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ :help mason-lspconfig.nvim

- Latest version: v1.28.0 + Latest version: v1.29.0

# Table of Contents diff --git a/lua/mason-lspconfig/version.lua b/lua/mason-lspconfig/version.lua index 4db648c48..482677d6a 100644 --- a/lua/mason-lspconfig/version.lua +++ b/lua/mason-lspconfig/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.28.0" -- x-release-please-version +M.VERSION = "v1.29.0" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major -M.MINOR_VERSION = 28 -- x-release-please-minor +M.MINOR_VERSION = 29 -- x-release-please-minor M.PATCH_VERSION = 0 -- x-release-please-patch return M