Update Changelog + bump version to 1.0.10

release-1.0 1.0.10
Thomas Bruederli 7 years ago
parent 37cae3ecfa
commit 511793c25f

@ -1,6 +1,9 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.0.10
--------------
- Strip HTML tags inside CSS style definitions
- Fix vulnerability in handling of mail()'s 5th argument
- Don't create multipart/alternative messages with empty text/plain part (#5283)
- Fix XSS issue in href attribute on area tag (#5240)

@ -2,7 +2,7 @@
/*
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.0.9 |
| Version 1.0.10 |
| |
| Copyright (C) 2005-2014, The Roundcube Dev Team |
| |

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

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

Loading…
Cancel
Save