Skip to content

Commit 9bbd209

Browse files
chore(main): release 1.2.0 (#1348)
1 parent 13e26c8 commit 9bbd209

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

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

3+
## [1.2.0](https://github.com/williamboman/mason.nvim/compare/v1.1.1...v1.2.0) (2023-06-13)
4+
5+
6+
### Features
7+
8+
* **command:** improve completion for :MasonInstall ([#1353](https://github.com/williamboman/mason.nvim/issues/1353)) ([13e26c8](https://github.com/williamboman/mason.nvim/commit/13e26c81ff5074ee8f095a791cd37fc1cec37377))
9+
10+
11+
### Bug Fixes
12+
13+
* **async:** always check channel state ([#1351](https://github.com/williamboman/mason.nvim/issues/1351)) ([f503346](https://github.com/williamboman/mason.nvim/commit/f5033463bb911a136e577fc6f339328f162e2b4a))
14+
* **command:** run :MasonUpdate synchronously in headless mode ([#1347](https://github.com/williamboman/mason.nvim/issues/1347)) ([0276793](https://github.com/williamboman/mason.nvim/commit/02767937fc2e1b214c854a8fdde26ae1d3529dd6))
15+
* **functional:** strip_prefix and strip_suffix should not use patterns ([#1352](https://github.com/williamboman/mason.nvim/issues/1352)) ([f99b702](https://github.com/williamboman/mason.nvim/commit/f99b70233e49db2229350bb82d9ddc6e2f4131c0))
16+
317
## [1.1.1](https://github.com/williamboman/mason.nvim/compare/v1.1.0...v1.1.1) (2023-05-29)
418

519

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.1.1</sup> <!-- x-release-please-version -->
17+
<sup>Latest version: v1.2.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.1.1" -- x-release-please-version
3+
M.VERSION = "v1.2.0" -- x-release-please-version
44
M.MAJOR_VERSION = 1 -- x-release-please-major
5-
M.MINOR_VERSION = 1 -- x-release-please-minor
6-
M.PATCH_VERSION = 1 -- x-release-please-patch
5+
M.MINOR_VERSION = 2 -- x-release-please-minor
6+
M.PATCH_VERSION = 0 -- x-release-please-patch
77

88
return M

0 commit comments

Comments
 (0)