Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
docs: update for v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshiew committed Sep 14, 2021
1 parent 0733755 commit 50baf13
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.2.0] - 2021-09-14

### Changed
* Use vim.notify instead of print for info messages
* Vendor plenary.curl so upstream plenary can be used without issue
* No longer freeze up Neovim while completions are being fetched
* Use Vim notifications for info messages instead of echoing them
* Vendor forked curl code from [plenary.nvim](https://github.com/nvim-lua/plenary.nvim) so that upstream plenary.nvim can be required as a dependency without issue
* No longer freeze up Neovim while completions are being fetched ([#1](https://github.com/jameshiew/nvim-magic/issues/1))

### Fixed
* Using a default keymap in a buffer should work first time rather than just deselecting the current visual selection [#2](https://github.com/jameshiew/nvim-magic/issues/2)
* Using a default keymap in a buffer should work first time rather than just deselecting the current visual selection ([#2](https://github.com/jameshiew/nvim-magic/issues/2))

## [0.1.0] - 2021-09-13

[0.2.0]: https://github.com/jameshiew/nvim-magic/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/jameshiew/nvim-magic/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ use({
config = function()
require('nvim-magic').setup()
end,
tag = 'v0.1.0', -- recommended to pin to a tag and update manually as there may be breaking changes
tag = 'v0.2.0', -- recommended to pin to a tag and update manually as there may be breaking changes
requires = {
'jameshiew/plenary.nvim', -- fork of nvim-lua/plenary.nvim which allows a longer request timeout, the original can be used if wanted
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim'
}
})
Expand Down

0 comments on commit 50baf13

Please sign in to comment.