Bump version

release-0.9 v0.9.5
Thomas 11 years ago
parent 8d5832fe96
commit 4af76d20ca

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
RELEASE 0.9.5
-------------
- Fix failing vCard import when email address field contains spaces (#1489386) - Fix failing vCard import when email address field contains spaces (#1489386)
- Fix default spell-check configuration after Google suspended their spell service - Fix default spell-check configuration after Google suspended their spell service
- Fix vulnerability in handling _session argument of utils/save-prefs (#1489382) - Fix vulnerability in handling _session argument of utils/save-prefs (#1489382)

@ -2,7 +2,7 @@
/* /*
+-------------------------------------------------------------------------+ +-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client | | Roundcube Webmail IMAP Client |
| Version 0.9.4 | | Version 0.9.5 |
| | | |
| Copyright (C) 2005-2013, The Roundcube Dev Team | | Copyright (C) 2005-2013, The Roundcube Dev Team |
| | | |

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

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

Loading…
Cancel
Save