From 2a7f557f05237902ea99648d86f84448b768ce14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 23 Dec 2024 08:56:34 +0100 Subject: [PATCH] core: add version 4.5.1 --- CHANGELOG.md | 10 ++++++++++ version.sh | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 450f0d2a0..68d6558bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,16 @@ - logger: fix path displayed when the logs directory can not be created - perl: fix build with Perl < 5.7.29 ([#2219](https://github.com/weechat/weechat/issues/2219), [#2220](https://github.com/weechat/weechat/issues/2220)) +## Version 4.5.1 (2024-12-23) + +### Fixed + +- relay: fix crash after `/upgrade` when relay clients are connected +- api: fix creation of empty buffer in function infolist_new_var_buffer +- core: fix detection of dl library ([#2218](https://github.com/weechat/weechat/issues/2218)) +- logger: fix path displayed when the logs directory can not be created +- perl: fix build with Perl < 5.7.29 ([#2219](https://github.com/weechat/weechat/issues/2219), [#2220](https://github.com/weechat/weechat/issues/2220)) + ## Version 4.5.0 (2024-12-15) ### Changed diff --git a/version.sh b/version.sh index 720871afd..d43d92d75 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.5.0" +weechat_stable="4.5.1" weechat_devel="4.6.0-dev" stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)