diff --git a/CHANGELOG.md b/CHANGELOG.md index a502101..5c43d79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 2266d6b..f55ff04 100644 --- a/README.md +++ b/README.md @@ -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' } })