diff --git a/Makefile b/Makefile index 1ac1be809..2f37dcb9b 100644 --- a/Makefile +++ b/Makefile @@ -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 # webapp diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php index 3a8100ab3..df9161db3 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -376,7 +376,7 @@ class SeedDMS_Core_DMS { $this->callbacks = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '5.1.7'; + $this->version = '5.1.8'; } /* }}} */ /** diff --git a/SeedDMS_Core/package.xml b/SeedDMS_Core/package.xml index 4689815b7..3a62fe77e 100644 --- a/SeedDMS_Core/package.xml +++ b/SeedDMS_Core/package.xml @@ -15,8 +15,8 @@ 2018-04-05 - 5.1.7 - 5.1.7 + 5.1.8 + 5.1.8 stable @@ -1580,5 +1580,21 @@ add lots of DocBlocks from merge request #8 add SeedDMS_Core_AttributeDefinition::removeValue() + + 2018-04-05 + + + 5.1.7 + 5.1.7 + + + stable + stable + + GPL License + +just bump version + + diff --git a/inc/inc.Version.php b/inc/inc.Version.php index 447b3bf06..74c53de32 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "5.1.7"; + public $_number = "5.1.8"; private $_string = "SeedDMS"; function __construct() { diff --git a/install/install.php b/install/install.php index fa2fefba1..892cd3941 100644 --- a/install/install.php +++ b/install/install.php @@ -123,7 +123,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "5.1.7"); +define("SEEDDMS_VERSION", "5.1.8"); require_once('../inc/inc.ClassSettings.php');