diff --git a/CHANGELOG.md b/CHANGELOG.md index b71f9cadb..fa511e800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ - relay/api: fix empty nicklist in remote buffers after connection or reconnection - lua: fix compilation on Fedora with Lua < 5.2.0 ([#2173](https://github.com/weechat/weechat/issues/2173), [#2174](https://github.com/weechat/weechat/issues/2174)) +## Version 4.4.2 (2024-09-08) + +### Fixed + +- core, plugins: fix integer overflow in loops ([#2178](https://github.com/weechat/weechat/issues/2178)) + ## Version 4.4.1 (2024-08-19) ### Fixed diff --git a/version.sh b/version.sh index a4b0bc2cf..8811355f6 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.4.1" +weechat_stable="4.4.2" weechat_devel="4.5.0-dev" stable_major=$(echo "${weechat_stable}" | cut -d"." -f1)