From 28212de5ec20e632b28bc3bf634f0143bc781351 Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:13:12 +0200 Subject: [PATCH] chore(main): release 1.30.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- lua/mason-lspconfig/version.lua | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fd786fd3..1e0a5d2ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.30.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.29.0...v1.30.0) (2024-06-12) + + +### Features + +* add nginx-language-server support ([#421](https://github.com/williamboman/mason-lspconfig.nvim/issues/421)) ([37a336b](https://github.com/williamboman/mason-lspconfig.nvim/commit/37a336b653f8594df75c827ed589f1c91d91ff6c)) +* add shopify_theme_ls mapping ([#412](https://github.com/williamboman/mason-lspconfig.nvim/issues/412)) ([ce1b625](https://github.com/williamboman/mason-lspconfig.nvim/commit/ce1b6254afc0e7f4c91a273175361c18f20621ee)) + + +### Bug Fixes + +* prefer vim.islist over vim.tbl_islist ([#413](https://github.com/williamboman/mason-lspconfig.nvim/issues/413)) ([a4caa0d](https://github.com/williamboman/mason-lspconfig.nvim/commit/a4caa0d083aab56f6cd5acf2d42331b74614a585)) + ## [1.29.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.28.0...v1.29.0) (2024-05-11) diff --git a/README.md b/README.md index af1cd9b51..ed6749ac3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ :help mason-lspconfig.nvim

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

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