diff options
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason/version.lua | 6 |
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) @@ -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 |
