Skip to content

Commit 426beb5

Browse files
committed
chore(main): release 1.1.0
1 parent e634134 commit 426beb5

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
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.1.0](https://github.com/williamboman/mason.nvim/compare/v1.0.1...v1.1.0) (2023-05-12)
4+
5+
6+
### Features
7+
8+
* **ui:** add keymap setting for toggling package installation log ([#1268](https://github.com/williamboman/mason.nvim/issues/1268)) ([48bb1cc](https://github.com/williamboman/mason.nvim/commit/48bb1cc33a1fefe94f5ce4972446a1c6ad849f15))
9+
* **ui:** display "update all" hint ([#1296](https://github.com/williamboman/mason.nvim/issues/1296)) ([e634134](https://github.com/williamboman/mason.nvim/commit/e634134312bb936f472468a401c9cae6485ab54b))
10+
11+
12+
### Bug Fixes
13+
14+
* **sources:** don't skip installation if fixed version is not currently installed ([#1297](https://github.com/williamboman/mason.nvim/issues/1297)) ([9c5edf1](https://github.com/williamboman/mason.nvim/commit/9c5edf13c2e6bd5223eebfeb4557ccc841acaa0e))
15+
316
## [1.0.1](https://github.com/williamboman/mason.nvim/compare/v1.0.0...v1.0.1) (2023-04-26)
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.0.1</sup> <!-- x-release-please-version -->
17+
<sup>Latest version: v1.1.0</sup> <!-- x-release-please-version -->
1818
</p>
1919

2020
# Table of Contents

lua/mason/version.lua

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

3-
M.VERSION = "v1.0.1" -- x-release-please-version
3+
M.VERSION = "v1.1.0" -- x-release-please-version
44
M.MAJOR_VERSION = 1 -- x-release-please-major
5-
M.MINOR_VERSION = 0 -- x-release-please-minor
6-
M.PATCH_VERSION = 1 -- x-release-please-patch
5+
M.MINOR_VERSION = 1 -- x-release-please-minor
6+
M.PATCH_VERSION = 0 -- x-release-please-patch
77

88
return M

0 commit comments

Comments
 (0)