aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwilliambotman[bot] <107473453+williambotman@users.noreply.github.com>2023-06-18 17:35:34 +0200
committerGitHub <noreply@github.com>2023-06-18 17:35:34 +0200
commitf7f81ab41b153e2902ebded401a8a0a6abe28607 (patch)
tree7bfc4fc35112c61f754ba94c0ba90773607338e4
parentfeat(health): add advice for Debian/Ubuntu regarding python3 venv (#1358) (diff)
downloadmason-1.3.0.tar
mason-1.3.0.tar.gz
mason-1.3.0.tar.bz2
mason-1.3.0.tar.lz
mason-1.3.0.tar.xz
mason-1.3.0.tar.zst
mason-1.3.0.zip
chore(main): release 1.3.0 (#1359)v1.3.0
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md2
-rw-r--r--lua/mason/version.lua6
3 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 17256a28..19a3cb48 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.3.0](https://github.com/williamboman/mason.nvim/compare/v1.2.1...v1.3.0) (2023-06-18)
+
+
+### Features
+
+* **health:** add advice for Debian/Ubuntu regarding python3 venv ([#1358](https://github.com/williamboman/mason.nvim/issues/1358)) ([6f3853e](https://github.com/williamboman/mason.nvim/commit/6f3853e5ae8c200e29d2e394e479d9c3f8e018f5))
+
## [1.2.1](https://github.com/williamboman/mason.nvim/compare/v1.2.0...v1.2.1) (2023-06-13)
diff --git a/README.md b/README.md
index cfedd5a9..64cd7ee4 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v1.2.1</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.3.0</sup> <!-- x-release-please-version -->
</p>
# Table of Contents
diff --git a/lua/mason/version.lua b/lua/mason/version.lua
index a9f15c42..83fd4824 100644
--- a/lua/mason/version.lua
+++ b/lua/mason/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.2.1" -- x-release-please-version
+M.VERSION = "v1.3.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 2 -- x-release-please-minor
-M.PATCH_VERSION = 1 -- x-release-please-patch
+M.MINOR_VERSION = 3 -- x-release-please-minor
+M.PATCH_VERSION = 0 -- x-release-please-patch
return M