summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/pages/changelog.asciidoc7
-rw-r--r--src/main.cc3
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc
index f443f207..66733443 100644
--- a/doc/pages/changelog.asciidoc
+++ b/doc/pages/changelog.asciidoc
@@ -3,13 +3,18 @@
This changelog contains major and/or breaking changes to Kakoune between
released versions.
-== Development version
+== Kakoune 2025.06.03
* Expose env vars that are mentioned in the arguments passed to shell expansions
+
* Support for colored double underlines
+
* `git apply` can now operate on selected changes in the current buffer's
file (useful for quick (un)staging and reverting)
+* `exec/eval -client` switch accepts '*' for all clients and comma separated
+ list of client names.
+
== Kakoune 2024.05.18
* Fixed tests on Alpine Linux and *BSD
diff --git a/src/main.cc b/src/main.cc
index 78318b5b..bf382dd2 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -45,10 +45,11 @@ struct {
unsigned int version;
StringView notes;
} constexpr version_notes[] = { {
- 0,
+ 20250603,
"» kak_* appearing in shell arguments will be added to the environment\n"
"» {+U}double underline{} support\n"
"» {+u}git apply{} can stage/revert selected changes to current buffer\n"
+ "» {+u}exec/eval -client{} accepts '*' and comma separated list\n"
}, {
20240518,
"» Fix tests failing on some platforms\n"