summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-12-03 19:24:40 +0100
committerSébastien Helleu <flashcode@flashtux.org>2023-12-03 19:25:20 +0100
commit8c3b7b6c6ee851c86d8e1907c243017935136283 (patch)
treed0c976d15b49351cf7601e1896234e150430987d
parent6223639b71cb3bc1f81db3af55718cb493738696 (diff)
downloadweechat-8c3b7b6c6ee851c86d8e1907c243017935136283.zip
core: add versions 4.0.7 and 4.1.2 in ChangeLog and release notes
-rw-r--r--ChangeLog.adoc30
-rw-r--r--ReleaseNotes.adoc10
-rwxr-xr-xversion.sh2
3 files changed, 41 insertions, 1 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc
index a959e06e0..4190eeedd 100644
--- a/ChangeLog.adoc
+++ b/ChangeLog.adoc
@@ -64,6 +64,21 @@ Build::
* core: make libintl.h required if CMake option ENABLE_NLS is enabled (issue #2031)
+[[v4.1.2]]
+== Version 4.1.2 (2023-12-03)
+
+Bug fixes::
+
+ * core: fix value of buffer variable "num_history" when the value defined in option weechat.history.max_commands is reached
+ * core: remove incorrect warning when binding keys kbd:[F10] to kbd:[F20] (issue #2039)
+ * core: fix memory leak when config version is invalid or not supported
+ * core: fix crash when "config_version" is present in a configuration file without a value
+ * core: display an error on startup if environment variable "HOME" is not set
+ * irc: remove trailing "\r\n" in signals "irc_out" and "irc_outtags" when messages are queued
+ * irc: fix target buffer of IRC message 337 (whois reply: "is hiding their idle time")
+ * relay: close properly connection with the IRC client in case of server disconnection (issue #2038)
+ * ruby: fix use of NULL variable when displaying exception
+
[[v4.1.1]]
== Version 4.1.1 (2023-10-26)
@@ -149,6 +164,21 @@ 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.7]]
+== Version 4.0.7 (2023-12-03)
+
+Bug fixes::
+
+ * core: fix value of buffer variable "num_history" when the value defined in option weechat.history.max_commands is reached
+ * core: remove incorrect warning when binding keys kbd:[F10] to kbd:[F20] (issue #2039)
+ * core: fix memory leak when config version is invalid or not supported
+ * core: fix crash when "config_version" is present in a configuration file without a value
+ * core: display an error on startup if environment variable "HOME" is not set
+ * irc: remove trailing "\r\n" in signals "irc_out" and "irc_outtags" when messages are queued
+ * irc: fix target buffer of IRC message 337 (whois reply: "is hiding their idle time")
+ * relay: close properly connection with the IRC client in case of server disconnection (issue #2038)
+ * ruby: fix use of NULL variable when displaying exception
+
[[v4.0.6]]
== Version 4.0.6 (2023-10-26)
diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc
index 3bee265db..74bf912db 100644
--- a/ReleaseNotes.adoc
+++ b/ReleaseNotes.adoc
@@ -88,6 +88,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.2]]
+== Version 4.1.2 (2023-12-03)
+
+No release notes.
+
[[v4.1.1]]
== Version 4.1.1 (2023-10-26)
@@ -209,6 +214,11 @@ You can reset it with this command:
/reset weechat.key_mouse.@chat(fset.fset):button1
----
+[[v4.0.7]]
+== Version 4.0.7 (2023-12-03)
+
+No release notes.
+
[[v4.0.6]]
== Version 4.0.6 (2023-10-26)
diff --git a/version.sh b/version.sh
index 1c3cde224..be8c45231 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.1"
+weechat_stable="4.1.2"
weechat_devel="4.2.0-dev"
stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)