From d5b61f565e693d184e09b2900ea7dc4f8d725d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 20 Jan 2024 09:26:35 +0100 Subject: [PATCH] core: add versions 4.0.8 and 4.1.3 in ChangeLog and release notes --- ChangeLog.adoc | 22 ++++++++++++++++++++++ ReleaseNotes.adoc | 10 ++++++++++ version.sh | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/ChangeLog.adoc b/ChangeLog.adoc index cae077c7a..af8bcffdd 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -78,6 +78,17 @@ Build:: * core: make libintl.h required if CMake option ENABLE_NLS is enabled (issue #2031) * ruby: add detection of Ruby 3.3 +[[v4.1.3]] +== Version 4.1.3 (2024-01-20) + +Bug fixes:: + + * core: fix crash on plugin reload when using musl libc (issue #2052) + * core: fix infinite loop in display when the chat area is too small (issue #2053) + * irc: check if arguments are not NULL in some infos + * irc: fix info "irc_is_message_ignored" (issue #2059) + * irc: fix display of self messages when the message split fails due to inconsistent max lengths sent by the server in message 005 + [[v4.1.2]] == Version 4.1.2 (2023-12-03) @@ -178,6 +189,17 @@ Build:: * core: fix build error if CMake option ENABLE_NLS is turned to off or if required dependencies are not found (issue #2026) * core, logger, relay: make zstd dependency optional (issue #2024) +[[v4.0.8]] +== Version 4.0.8 (2024-01-20) + +Bug fixes:: + + * core: fix crash on plugin reload when using musl libc (issue #2052) + * core: fix infinite loop in display when the chat area is too small (issue #2053) + * irc: check if arguments are not NULL in some infos + * irc: fix info "irc_is_message_ignored" (issue #2059) + * irc: fix display of self messages when the message split fails due to inconsistent max lengths sent by the server in message 005 + [[v4.0.7]] == Version 4.0.7 (2023-12-03) diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index 2cfefd5d7..058ab4628 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -102,6 +102,11 @@ The infos irc_nick_color and irc_nick_color_name are deprecated again, and the algorithm to compute IRC nick colors has been reverted to case sensitive. + The server name has been removed from arguments. +[[v4.1.3]] +== Version 4.1.3 (2024-01-20) + +No release notes. + [[v4.1.2]] == Version 4.1.2 (2023-12-03) @@ -228,6 +233,11 @@ You can reset it with this command: /reset weechat.key_mouse.@chat(fset.fset):button1 ---- +[[v4.0.8]] +== Version 4.0.8 (2024-01-20) + +No release notes. + [[v4.0.7]] == Version 4.0.7 (2023-12-03) diff --git a/version.sh b/version.sh index 1352d383d..75e64fabe 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.1.2" +weechat_stable="4.1.3" weechat_devel="4.2.0-dev" stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)