From 4c70ce0d869505c2b2a48638679620c95e743393 Mon Sep 17 00:00:00 2001 From: "williambotman[bot]" <107473453+williambotman@users.noreply.github.com> Date: Fri, 15 Nov 2024 11:05:00 +0100 Subject: [PATCH] chore(main): release 1.31.1 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- lua/mason-lspconfig/version.lua | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c5a33fe..3f0ad1232 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.31.1](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.31.0...v1.31.1) (2024-11-15) + + +### Bug Fixes + +* don't override psalm cmd ([#477](https://github.com/williamboman/mason-lspconfig.nvim/issues/477)) ([7446f47](https://github.com/williamboman/mason-lspconfig.nvim/commit/7446f47b3dfb7df801f31a6f6783c2ad119a6935)) +* fix importing server config definitions from lspconfig ([#468](https://github.com/williamboman/mason-lspconfig.nvim/issues/468)) ([87638e7](https://github.com/williamboman/mason-lspconfig.nvim/commit/87638e71c83100980f932714ea62ea82a972c95b)) +* update required nvim version to >= 0.9.0 ([#478](https://github.com/williamboman/mason-lspconfig.nvim/issues/478)) ([b950110](https://github.com/williamboman/mason-lspconfig.nvim/commit/b9501106148f434a7ce528bca65725b60ea3e5d3)) + ## [1.31.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.30.0...v1.31.0) (2024-09-08) diff --git a/README.md b/README.md index 3f7e0792d..ec11095ce 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ :help mason-lspconfig.nvim

- Latest version: v1.31.0 + Latest version: v1.31.1

# Table of Contents diff --git a/lua/mason-lspconfig/version.lua b/lua/mason-lspconfig/version.lua index a4d3741cf..b038168f9 100644 --- a/lua/mason-lspconfig/version.lua +++ b/lua/mason-lspconfig/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.31.0" -- x-release-please-version +M.VERSION = "v1.31.1" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major M.MINOR_VERSION = 31 -- x-release-please-minor -M.PATCH_VERSION = 0 -- x-release-please-patch +M.PATCH_VERSION = 1 -- x-release-please-patch return M