diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc index 3bb3e6c1..0cab1d0d 100644 --- a/doc/pages/changelog.asciidoc +++ b/doc/pages/changelog.asciidoc @@ -3,6 +3,14 @@ This changelog contains major and/or breaking changes to Kakoune between released versions. +== Kakoune 2021.11.07 + +* Support for curly and separately colored underlines (undocumented in 2021.10.28) + +* Fixes for terminal flickering + +* Fixes for command and response fifo corner cases + == Kakoune 2021.10.28 * `g` and `v` do not auto lower case the next key, so `GL` needs to be diff --git a/src/main.cc b/src/main.cc index 7fa6070e..6da6e648 100644 --- a/src/main.cc +++ b/src/main.cc @@ -44,6 +44,9 @@ struct { unsigned int version; StringView notes; } constexpr version_notes[] = { { + 20211107, + "» colored and curly underlines support (undocumented in 20210828)\n" + }, { 20211028, "» {+b}g{} and {+b}v{} do not auto-convert to lowercase anymore\n" }, {