diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2023-06-28 20:16:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-28 20:16:02 +0200 |
| commit | 8adaf0bc58ddadd70dad563f949042fb1cb0211c (patch) | |
| tree | aae693ae1eb247dfbbb2bdc02ae82fa9a6c70863 | |
| parent | feat(command): add completion for option flags for :MasonInstall (#1379) (diff) | |
| download | mason-1.5.0.tar mason-1.5.0.tar.gz mason-1.5.0.tar.bz2 mason-1.5.0.tar.lz mason-1.5.0.tar.xz mason-1.5.0.tar.zst mason-1.5.0.zip | |
chore(main): release 1.5.0 (#1375)v1.5.0
| -rw-r--r-- | CHANGELOG.md | 13 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/mason/version.lua | 4 |
3 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fbe19d19..9b37e9c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.5.0](https://github.com/williamboman/mason.nvim/compare/v1.4.0...v1.5.0) (2023-06-28) + + +### Features + +* **command:** add completion for option flags for :MasonInstall ([#1379](https://github.com/williamboman/mason.nvim/issues/1379)) ([e507af7](https://github.com/williamboman/mason.nvim/commit/e507af7b996dae90404345abb2bc88540f931589)) +* **installer:** write more installation output to stdout ([#1376](https://github.com/williamboman/mason.nvim/issues/1376)) ([758ac5b](https://github.com/williamboman/mason.nvim/commit/758ac5b35e823eee74a90f855b2a66afc51ec92d)) + + +### Bug Fixes + +* **installer:** timeout schema download after 5s ([#1374](https://github.com/williamboman/mason.nvim/issues/1374)) ([d114376](https://github.com/williamboman/mason.nvim/commit/d11437645af60449ff252b2c9abda103c5610520)) + ## [1.4.0](https://github.com/williamboman/mason.nvim/compare/v1.3.0...v1.4.0) (2023-06-21) @@ -14,7 +14,7 @@ <code>:help mason.nvim</code> </p> <p align="center"> - <sup>Latest version: v1.4.0</sup> <!-- x-release-please-version --> + <sup>Latest version: v1.5.0</sup> <!-- x-release-please-version --> </p> # Table of Contents diff --git a/lua/mason/version.lua b/lua/mason/version.lua index 903ca96b..2e60976d 100644 --- a/lua/mason/version.lua +++ b/lua/mason/version.lua @@ -1,8 +1,8 @@ local M = {} -M.VERSION = "v1.4.0" -- x-release-please-version +M.VERSION = "v1.5.0" -- x-release-please-version M.MAJOR_VERSION = 1 -- x-release-please-major -M.MINOR_VERSION = 4 -- x-release-please-minor +M.MINOR_VERSION = 5 -- x-release-please-minor M.PATCH_VERSION = 0 -- x-release-please-patch return M |
