diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2024-01-06 09:11:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-06 09:11:42 +0100 |
| commit | baf99d94c3380640d19af9c70c0541bd6e7cd0cb (patch) | |
| tree | d6365672a90e950214494b20b458c1f7aa27f030 | |
| parent | feat: add support for openvsx sources (#1589) (diff) | |
| download | mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar.gz mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar.bz2 mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar.lz mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar.xz mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.tar.zst mason-baf99d94c3380640d19af9c70c0541bd6e7cd0cb.zip | |
chore(main): release 1.9.0 (#1586)v1.9.0
| -rw-r--r-- | CHANGELOG.md | 12 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason/version.lua | 6 |
3 files changed, 16 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 088c5ab6..5a84306b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.9.0](https://github.com/williamboman/mason.nvim/compare/v1.8.3...v1.9.0) (2024-01-06) + + +### Features + +* add support for openvsx sources ([#1589](https://github.com/williamboman/mason.nvim/issues/1589)) ([6c68547](https://github.com/williamboman/mason.nvim/commit/6c685476df4f202e371bdd3d726729d6f3f8b9f0)) + + +### Bug Fixes + +* **cargo:** don't attempt to fetch versions when version targets commit SHA ([#1585](https://github.com/williamboman/mason.nvim/issues/1585)) ([a09da6a](https://github.com/williamboman/mason.nvim/commit/a09da6ac634926a299dd439da08bdb547a8ca011)) + ## [1.8.3](https://github.com/williamboman/mason.nvim/compare/v1.8.2...v1.8.3) (2023-11-08) @@ -14,7 +14,7 @@ <code>:help mason.nvim</code> </p> <p align="center"> - <sup>Latest version: v1.8.3</sup> <!-- x-release-please-version --> + <sup>Latest version: v1.9.0</sup> <!-- x-release-please-version --> </p> # Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index b462cf2b..cbab89ce 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.8.3" -- x-release-please-version +M.VERSION = "v1.9.0" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major -M.MINOR_VERSION = 8 -- x-release-please-minor -M.PATCH_VERSION = 3 -- x-release-please-patch +M.MINOR_VERSION = 9 -- x-release-please-minor +M.PATCH_VERSION = 0 -- x-release-please-patch return M |
