Skip to content

Commit d66c60e

Browse files
chore(main): release 1.8.0 (#1469)
1 parent ee6a7f1 commit d66c60e

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.8.0](https://github.com/williamboman/mason.nvim/compare/v1.7.0...v1.8.0) (2023-09-04)
4+
5+
6+
### Features
7+
8+
* **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))
9+
10+
11+
### Bug Fixes
12+
13+
* **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))
14+
* **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))
15+
316
## [1.7.0](https://github.com/williamboman/mason.nvim/compare/v1.6.2...v1.7.0) (2023-08-25)
417

518

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<code>:help mason.nvim</code>
1515
</p>
1616
<p align="center">
17-
<sup>Latest version: v1.7.0</sup> <!-- x-release-please-version -->
17+
<sup>Latest version: v1.8.0</sup> <!-- x-release-please-version -->
1818
</p>
1919

2020
# Table of Contents

lua/mason/version.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
local M = {}
22

3-
M.VERSION = "v1.7.0" -- x-release-please-version
3+
M.VERSION = "v1.8.0" -- x-release-please-version
44
M.MAJOR_VERSION = 1 -- x-release-please-major
5-
M.MINOR_VERSION = 7 -- x-release-please-minor
5+
M.MINOR_VERSION = 8 -- x-release-please-minor
66
M.PATCH_VERSION = 0 -- x-release-please-patch
77

88
return M

0 commit comments

Comments
 (0)