start new version 5.1.8

This commit is contained in:
Uwe Steinmann 2018-04-05 17:28:00 +02:00
parent dbb8554f46
commit 2413da8c0b
5 changed files with 22 additions and 6 deletions

View File

@ -1,4 +1,4 @@
VERSION=5.1.7 VERSION=5.1.8
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer
# webapp # webapp

View File

@ -376,7 +376,7 @@ class SeedDMS_Core_DMS {
$this->callbacks = array(); $this->callbacks = array();
$this->version = '@package_version@'; $this->version = '@package_version@';
if($this->version[0] == '@') if($this->version[0] == '@')
$this->version = '5.1.7'; $this->version = '5.1.8';
} /* }}} */ } /* }}} */
/** /**

View File

@ -15,8 +15,8 @@
<date>2018-04-05</date> <date>2018-04-05</date>
<time>09:19:24</time> <time>09:19:24</time>
<version> <version>
<release>5.1.7</release> <release>5.1.8</release>
<api>5.1.7</api> <api>5.1.8</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
@ -1580,5 +1580,21 @@ add lots of DocBlocks from merge request #8
add SeedDMS_Core_AttributeDefinition::removeValue() add SeedDMS_Core_AttributeDefinition::removeValue()
</notes> </notes>
</release> </release>
<release>
<date>2018-04-05</date>
<time>09:19:24</time>
<version>
<release>5.1.7</release>
<api>5.1.7</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
just bump version
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version { class SeedDMS_Version {
public $_number = "5.1.7"; public $_number = "5.1.8";
private $_string = "SeedDMS"; private $_string = "SeedDMS";
function __construct() { function __construct() {

View File

@ -123,7 +123,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
* Load default settings + set * Load default settings + set
*/ */
define("SEEDDMS_INSTALL", "on"); define("SEEDDMS_INSTALL", "on");
define("SEEDDMS_VERSION", "5.1.7"); define("SEEDDMS_VERSION", "5.1.8");
require_once('../inc/inc.ClassSettings.php'); require_once('../inc/inc.ClassSettings.php');