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 3446f229..e25083f1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## [1.8.0](https://github.com/williamboman/mason.nvim/compare/v1.7.0...v1.8.0) (2023-09-04)
+
+
+### Features
+
+* **ui:** add setting to toggle help view ([#1468](https://github.com/williamboman/mason.nvim/issues/1468)) ([e1602c8](https://github.com/williamboman/mason.nvim/commit/e1602c868f938877057cb6f45e50859cb55cad96))
+
+
+### Bug Fixes
+
+* **registry:** reset registries state when setting registries ([#1474](https://github.com/williamboman/mason.nvim/issues/1474)) ([c811fbf](https://github.com/williamboman/mason.nvim/commit/c811fbf09c7642eebb37d6694f1a016a043f6ed3))
+* **registry:** schedule vim.fn calls in FileRegistrySource ([#1471](https://github.com/williamboman/mason.nvim/issues/1471)) ([1c77412](https://github.com/williamboman/mason.nvim/commit/1c77412d7ff73e453cdc5366c8d7cd98d2242802))
+
## [1.7.0](https://github.com/williamboman/mason.nvim/compare/v1.6.2...v1.7.0) (2023-08-25)
diff --git a/README.md b/README.md
index ce70b44c..33bfb560 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
- <sup>Latest version: v1.7.0</sup> <!-- x-release-please-version -->
+ <sup>Latest version: v1.8.0</sup> <!-- x-release-please-version -->
</p>
# Table of Contents
diff --git a/lua/mason/version.lua b/lua/mason/version.lua
index 90831346..d15ef400 100644
--- a/lua/mason/version.lua
+++ b/lua/mason/version.lua
@@ -1,8 +1,8 @@
local M = {}
-M.VERSION = "v1.7.0" -- x-release-please-version
+M.VERSION = "v1.8.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
-M.MINOR_VERSION = 7 -- x-release-please-minor
+M.MINOR_VERSION = 8 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch
return M