diff --git a/CHANGELOG b/CHANGELOG index 312a9bb626c..0fcd2fdf296 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ CHANGELOG Roundcube Webmail =========================== +RELEASE 1.1.9 +------------- - Fix regression in LDAP fuzzy search where it always used prefix search instead (#5713) - Fix bug where base_dn setting was ignored inside group_filters (#5720) - Password: Fix security issue in virtualmin and sasl drivers [CVE-2017-8114] diff --git a/index.php b/index.php index bf98760923e..021e369306e 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail IMAP Client | - | Version 1.1.8 | + | Version 1.1.9 | | | | Copyright (C) 2005-2016, The Roundcube Dev Team | | | diff --git a/installer/index.php b/installer/index.php index f52709dc02e..f367b35e613 100644 --- a/installer/index.php +++ b/installer/index.php @@ -3,7 +3,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail setup tool | - | Version 1.1.8 | + | Version 1.1.9 | | | | Copyright (C) 2009-2016, The Roundcube Dev Team | | | diff --git a/program/include/iniset.php b/program/include/iniset.php index 337c29983ac..23e8c422faa 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -21,7 +21,7 @@ */ // application constants -define('RCMAIL_VERSION', '1.1.8'); +define('RCMAIL_VERSION', '1.1.9'); define('RCMAIL_START', microtime(true)); if (!defined('INSTALL_PATH')) { diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index 489f1525b9c..dcc53017e8b 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -54,7 +54,7 @@ } // framework constants -define('RCUBE_VERSION', '1.1.8'); +define('RCUBE_VERSION', '1.1.9'); define('RCUBE_CHARSET', 'UTF-8'); if (!defined('RCUBE_LIB_DIR')) {