diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-12 20:51:21 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-07-12 20:51:21 +0200 |
commit | 622410a64e7e52729d83ec4a8d6e310e258f65d6 (patch) | |
tree | 04482cd6d99ebca5b1d3b05023c36b9b11b7a1e6 | |
parent | 7c805aa699a70800049e1e9760b5bdde84e62be3 (diff) | |
download | weechat-622410a64e7e52729d83ec4a8d6e310e258f65d6.zip |
core: add version 4.0.2
-rw-r--r-- | ChangeLog.adoc | 16 | ||||
-rwxr-xr-x | version.sh | 2 |
2 files changed, 12 insertions, 6 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc index afc33f347..0b179b38a 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -31,11 +31,6 @@ New features:: Bug fixes:: - * core: fix renaming of options with command `/item rename` (issue #1978) - * core: don't send "key_pressed" signal again for the same key press (issue #1976) - * core: don't send "key_combo_*" signals for incomplete keys (issue #1976) - * core: add key ctrl-backspace in /help key (issue #1975) - * core: keep keys ctrl-H and ctrl-? (in lower case) if they were manually bound to custom commands in a previous version * core: fix cursor position after `/plugin list -i` or `/plugin list -il` * core: display focus hashtable for debug even if no key is matching * fset: remove extra spaces between min and max values when second format is used @@ -45,6 +40,17 @@ Bug fixes:: * script: fix cursor position after `/script list -i` or `/script list -il` * script: fix buffer used by command `/script list -i|-il|-o|-ol` +[[v4.0.2]] +== Version 4.0.2 (2023-07-12) + +Bug fixes:: + + * core: fix renaming of options with command `/item rename` (issue #1978) + * core: don't send "key_pressed" signal again for the same key press (issue #1976) + * core: don't send "key_combo_*" signals for incomplete keys (issue #1976) + * core: add key ctrl-backspace in /help key (issue #1975) + * core: keep keys ctrl-H and ctrl-? (in lower case) if they were manually bound to custom commands in a previous version + Tests:: * core: fix hdata tests failure on Alpine 3.18 diff --git a/version.sh b/version.sh index 73b428e24..d50d1a779 100755 --- a/version.sh +++ b/version.sh @@ -39,7 +39,7 @@ # devel-number the devel version as hex number ("0x04010000" for "4.1.0-dev") # -WEECHAT_STABLE="4.0.1" +WEECHAT_STABLE="4.0.2" WEECHAT_DEVEL="4.1.0-dev" STABLE_MAJOR=$(echo "${WEECHAT_STABLE}" | cut -d"." -f1) |