Bump version to 1.1.8

pull/6833/head 1.1.8
Thomas Bruederli 7 years ago
parent d6ddd31a1b
commit f1483204c7

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.1.8
-------------
- Fix bug where mail content frame couldn't be reset in some corner cases (#5608)
- Fix regression where groups with email address were resolved to its members' addresses
- Fix so group/addressbook selection is retained on page refresh

@ -2,7 +2,7 @@
/*
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.1.7 |
| Version 1.1.8 |
| |
| Copyright (C) 2005-2016, The Roundcube Dev Team |
| |

@ -3,7 +3,7 @@
/*
+-------------------------------------------------------------------------+
| Roundcube Webmail setup tool |
| Version 1.1.7 |
| Version 1.1.8 |
| |
| Copyright (C) 2009-2016, The Roundcube Dev Team |
| |

@ -21,7 +21,7 @@
*/
// application constants
define('RCMAIL_VERSION', '1.1.7');
define('RCMAIL_VERSION', '1.1.8');
define('RCMAIL_START', microtime(true));
if (!defined('INSTALL_PATH')) {

@ -54,7 +54,7 @@ foreach ($config as $optname => $optval) {
}
// framework constants
define('RCUBE_VERSION', '1.1.7');
define('RCUBE_VERSION', '1.1.8');
define('RCUBE_CHARSET', 'UTF-8');
if (!defined('RCUBE_LIB_DIR')) {

Loading…
Cancel
Save