aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--README.md2
-rw-r--r--lua/mason/version.lua4
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)
diff --git a/README.md b/README.md
index 16520998..c148b3db 100644
--- a/README.md
+++ b/README.md
@@ -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