diff --git a/NEWS b/NEWS index 183927a9..93bacf85 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +v1.0.6 2018-01-07 The Irssi team + - Fix invalid memory access when reading hilight configuration + (#787, #788). + - Fix null pointer dereference when the channel topic is set + without specifying a sender (GL#20, GL!25). + - Fix return of random memory when using incomplete escape + codes (GL#21, GL!26). + - Fix heap buffer overflow when completing certain strings + (GL#19, GL!27). + - Fix return of random memory when using an incomplete + variable argument (GL#18, GL!28). + v1.0.5 2017-10-23 The Irssi team - Fix missing -sasl_method '' in /NETWORK (#718, #719). - Fix incorrect restoration of term state when hitting SUSP diff --git a/configure.ac b/configure.ac index a72d9cc2..e12b633c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(irssi, 1.0.5) +AC_INIT(irssi, 1.0.6) AC_CONFIG_SRCDIR([src]) AC_CONFIG_AUX_DIR(build-aux) AC_PREREQ(2.50)