aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2023-04-28 19:37:16 +0200
committerGitHub <noreply@github.com>2023-04-28 19:37:16 +0200
commit43f2ddf0b5f544d9bb20e24b8ff76b79f2a07ab0 (patch)
treeb153c776ba1c7c4e9102401adc691c64c1eb9949
parentfix(command): don't display error if no language/server is selected in :LspIn... (diff)
downloadmason-lspconfig-1.2.0.tar
mason-lspconfig-1.2.0.tar.gz
mason-lspconfig-1.2.0.tar.bz2
mason-lspconfig-1.2.0.tar.lz
mason-lspconfig-1.2.0.tar.xz
mason-lspconfig-1.2.0.tar.zst
mason-lspconfig-1.2.0.zip
chore(main): release 1.2.0 (#216)v1.2.0
-rw-r--r--CHANGELOG.md12
-rw-r--r--README.md2
-rw-r--r--lua/mason-lspconfig/version.lua4
3 files changed, 15 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e2cb352..df51de1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.2.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.1.0...v1.2.0) (2023-04-28)
+
+
+### Features
+
+* add java_language_server ([#127](https://github.com/williamboman/mason-lspconfig.nvim/issues/127)) ([490a599](https://github.com/williamboman/mason-lspconfig.nvim/commit/490a599933479c2141a7d6f9466642c6a89aae08))
+
+
+### Bug Fixes
+
+* **command:** don't display error if no language/server is selected in :LspInstall ([#214](https://github.com/williamboman/mason-lspconfig.nvim/issues/214)) ([3911807](https://github.com/williamboman/mason-lspconfig.nvim/commit/391180785e066c662440f1fde3f9eec336f18782))
+
## [1.1.0](https://github.com/williamboman/mason-lspconfig.nvim/compare/v1.0.1...v1.1.0) (2023-04-25)
diff --git a/README.md b/README.md
index e98cd9d..c18dd2f 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@
<code>:help mason-lspconfig.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v1.1.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.2.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 149124e..caf772e 100644
--- a/lua/mason-lspconfig/version.lua
+++ b/lua/mason-lspconfig/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.1.0" -- x-release-please-version
+M.VERSION = "v1.2.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 1 -- x-release-please-minor
+M.MINOR_VERSION = 2 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M