# HG changeset patch # User Gary Kramlich # Date 1654221986 18000 # Node ID 594d723693040b57a4d0faf403c9e15878047eac # Parent 4e0059800ba9aa11e8adf030a2148ee5558b17d4 Prepare for the 2.14.10 release Testing Done: Ran `codespell` and `make distcheck` Reviewed at https://reviews.imfreedom.org/r/1489/ diff -r 4e0059800ba9 -r 594d72369304 ChangeLog --- a/ChangeLog Thu Jun 02 20:17:31 2022 -0500 +++ b/ChangeLog Thu Jun 02 21:06:26 2022 -0500 @@ -1,6 +1,6 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul -version 2.14.10 (??/??/????): +version 2.14.10 (06/02/2022): General: * Audit and correct the COPYRIGHT file. (RR 1425) (Richard Laager) * Fix a spelling error in a debug message for proxies. (RR 1426) (Richard @@ -13,6 +13,9 @@ * Modernize the appdata file. (RR 1431) (Richard Laager) * Make privacy settings persist. (PIDGIN-17137) (RR 1463) (Belgin Știrbu) + Pidgin: + * Fix a use after free that was introduced in 2.14.9. (RR 1488) (ivanhoe) + IRC: * Fix a crash if the server sends a short form JOIN message. (PIDGIN-17375) (RR 1484) (Belgin Știrbu) @@ -26,6 +29,8 @@ Știrbu) * Fix updating custom smileys. (PIDGIN-17153) (RR 1477) (Belgin Știrbu) * Fix unblocking users. (PIDGIN-16414) (RR 1479) (Belgin Știrbu) + * Fix a crash when cancelling a file transfer. (PIDGIN-17189) (RR 1485) + (Belgin Știrbu) version 2.14.9 (04/28/2022): Security: diff -r 4e0059800ba9 -r 594d72369304 configure.ac --- a/configure.ac Thu Jun 02 20:17:31 2022 -0500 +++ b/configure.ac Thu Jun 02 21:06:26 2022 -0500 @@ -25,7 +25,7 @@ m4_define([purple_major_version], [2]) m4_define([purple_minor_version], [14]) m4_define([purple_micro_version], [10]) -m4_define([purple_version_suffix], [dev]) +m4_define([purple_version_suffix], []) m4_define([purple_version], [purple_major_version.purple_minor_version.purple_micro_version]) m4_define([purple_display_version], purple_version[]m4_ifdef([purple_version_suffix],[purple_version_suffix]))