Bump version to 1.2.4

pull/5754/head
Thomas Bruederli 8 years ago
parent 04ed3846d3
commit 85a750a068

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
RELEASE 1.2.4
-------------
- Managesieve: Fix handling of scripts with nested rules (#5540) - Managesieve: Fix handling of scripts with nested rules (#5540)
- Fix variable substitution in ldap host for some use-cases, e.g. new_user_identity (#5544) - Fix variable substitution in ldap host for some use-cases, e.g. new_user_identity (#5544)
- Enigma: Fix handling of messages with nested PGP encrypted parts (#5634) - Enigma: Fix handling of messages with nested PGP encrypted parts (#5634)

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

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

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

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

Loading…
Cancel
Save