From c20c182b7812b8ec53f53d990c422d4018dffd87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Feb 2023 04:57:33 +0000 Subject: [PATCH 1/2] chore(main): release 0.6.0 --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 823adeb4..3cfc052c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.6.0](https://github.com/aileot/nvim-laurel/compare/v0.5.6...v0.6.0) (2023-02-11) + + +### ⚠ BREAKING CHANGES + +* `command!` drops support to resolve unnecessary quote on callback + +### Code Refactoring + +* remove support for deprecated features ([#210](https://github.com/aileot/nvim-laurel/issues/210)) ([c7f4069](https://github.com/aileot/nvim-laurel/commit/c7f4069faed58d7021c0a3533c219ba22d7cb9d7)) + ## [0.5.6](https://github.com/aileot/nvim-laurel/compare/v0.5.5...v0.5.6) (2023-02-09) From e7c881ff5634bb9fa4a979ca0f11c9be75bfc962 Mon Sep 17 00:00:00 2001 From: aileot Date: Sat, 11 Feb 2023 14:13:01 +0900 Subject: [PATCH 2/2] docs(changelog): add missing breaking changes --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cfc052c..0c28833a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,17 @@ ### ⚠ BREAKING CHANGES * `command!` drops support to resolve unnecessary quote on callback - +* `map!` no longer resolves quoted callback in itself. +* `map!` no longer accept special options ``, `ex`, ``, and `cb`. +* `map!` no longer interpret callback of which the first symbol matches `^<.+>` as Lua function, but as Ex command. +* `map!` interprets callback in list as Lua function unless either symbol `&vim` precedes it or the first symbol of the list matches pattern `^<.+>`. +* `augroup!` & `autocmd!`/`au!` no longer resolves quoted callback in itself. +* `augroup!` & `autocmd!`/`au!` no longer accept special options ``, `ex`, ``, and `cb`. +* `augroup!` & `autocmd!`/`au!` no longer interpret callback of which the first symbol matches `^<.+>` as Lua function, but as key sequence. +* `augroup!` & `autocmd!`/`au!` interprets callback in list as Lua function unless either symbol `&vim` precedes it or the first symbol of the list matches pattern `^<.+>`. +* `map!` wrapper macros, `nmap!`, `vmap!`, ..., are removed. +* `augroup+` is removed; use `augroup!` with `{:clear false}` instead. + ### Code Refactoring * remove support for deprecated features ([#210](https://github.com/aileot/nvim-laurel/issues/210)) ([c7f4069](https://github.com/aileot/nvim-laurel/commit/c7f4069faed58d7021c0a3533c219ba22d7cb9d7))