Browse Source

Bump version to 1.5.1

pull/8503/head
Thomas Bruederli 4 years ago
parent
commit
4851ab3dd9
  1. 2
      CHANGELOG.md
  2. 2
      Makefile
  3. 2
      index.php
  4. 2
      installer/index.php
  5. 2
      program/include/iniset.php
  6. 2
      program/lib/Roundcube/bootstrap.php
  7. 2
      public_html/index.php
  8. 2
      tests/Framework/Browser.php

2
CHANGELOG.md

@ -1,6 +1,6 @@
# Changelog Roundcube Webmail
## Unreleased
## Release 1.5.1
- Fix importing contacts with no email address (#8227)
- Fix so session's search scope is not used if search is not active (#8199)

2
Makefile

@ -1,7 +1,7 @@
GITREMOTE=git://github.com/roundcube/roundcubemail.git
GITBRANCH=release-1.5
GPGKEY=devs@roundcube.net
VERSION=1.5.0
VERSION=1.5.1
all: clean complete dependent framework

2
index.php

@ -2,7 +2,7 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.5.0 |
| Version 1.5.1 |
| |
| Copyright (C) The Roundcube Dev Team |
| |

2
installer/index.php

@ -3,7 +3,7 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail setup tool |
| Version 1.5.0 |
| Version 1.5.1 |
| |
| Copyright (C) The Roundcube Dev Team |
| |

2
program/include/iniset.php

@ -20,7 +20,7 @@
*/
// application constants
define('RCMAIL_VERSION', '1.5.0');
define('RCMAIL_VERSION', '1.5.1');
define('RCMAIL_START', microtime(true));
if (!defined('INSTALL_PATH')) {

2
program/lib/Roundcube/bootstrap.php

@ -58,7 +58,7 @@ foreach ($config as $optname => $optval) {
}
// framework constants
define('RCUBE_VERSION', '1.5.0');
define('RCUBE_VERSION', '1.5.1');
define('RCUBE_CHARSET', 'UTF-8');
define('RCUBE_TEMP_FILE_PREFIX', 'RCMTEMP');

2
public_html/index.php

@ -3,7 +3,7 @@
/*
+-----------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.5.0 |
| Version 1.5.1 |
| |
| Copyright (C) The Roundcube Dev Team |
| |

2
tests/Framework/Browser.php

@ -59,7 +59,7 @@ class Framework_Browser extends PHPUnit\Framework\TestCase
{
return [
'WIN: Mozilla Firefox ' => [
'useragent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1',
'useragent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.1.1',
'version' => '1.8',
'isWin' => true,
'isLinux' => false,

Loading…
Cancel
Save