Skip to content

Commit

Permalink
chore(main): release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
williambotman committed Aug 19, 2023
1 parent a51c2d0 commit c916a8f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.7.0](https://github.com/williamboman/mason.nvim/compare/v1.6.2...v1.7.0) (2023-08-19)


### Features

* **cargo:** support fetching versions for git crates hosted on github ([#1459](https://github.com/williamboman/mason.nvim/issues/1459)) ([e9eb004](https://github.com/williamboman/mason.nvim/commit/e9eb0048cecc577a1eec534485d3e010487b46a7))


### Bug Fixes

* **std:** use gtar if available ([#1433](https://github.com/williamboman/mason.nvim/issues/1433)) ([a51c2d0](https://github.com/williamboman/mason.nvim/commit/a51c2d063c5377ee9e58c5f9cda7c7436787be72))
* **ui:** properly reset new package version state ([#1454](https://github.com/williamboman/mason.nvim/issues/1454)) ([68e6a15](https://github.com/williamboman/mason.nvim/commit/68e6a153d7cd1251eb85ebb48d2e351e9ab940b8))

## [1.6.2](https://github.com/williamboman/mason.nvim/compare/v1.6.1...v1.6.2) (2023-08-09)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<code>:help mason.nvim</code>
</p>
<p align="center">
<sup>Latest version: v1.6.2</sup> <!-- x-release-please-version -->
<sup>Latest version: v1.7.0</sup> <!-- x-release-please-version -->
</p>

# Table of Contents
Expand Down
6 changes: 3 additions & 3 deletions lua/mason/version.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
local M = {}

M.VERSION = "v1.6.2" -- x-release-please-version
M.VERSION = "v1.7.0" -- x-release-please-version
M.MAJOR_VERSION = 1 -- x-release-please-major
M.MINOR_VERSION = 6 -- x-release-please-minor
M.PATCH_VERSION = 2 -- x-release-please-patch
M.MINOR_VERSION = 7 -- x-release-please-minor
M.PATCH_VERSION = 0 -- x-release-please-patch

return M

0 comments on commit c916a8f

Please sign in to comment.