diff --git a/Makefile b/Makefile index 5baecf72c..0743c1aaa 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=5.0.6 +VERSION=5.0.7 SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install restapi # webapp diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php index 20985b1fe..a8a921f32 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -328,7 +328,7 @@ class SeedDMS_Core_DMS { $this->callbacks = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '5.0.6'; + $this->version = '5.0.7'; } /* }}} */ /** diff --git a/inc/inc.Version.php b/inc/inc.Version.php index 52f425fd4..117bcd580 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "5.0.6"; + public $_number = "5.0.7"; private $_string = "SeedDMS"; function __construct() { diff --git a/install/install.php b/install/install.php index c7e837010..2eb66b54f 100644 --- a/install/install.php +++ b/install/install.php @@ -118,7 +118,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "5.0.6"); +define("SEEDDMS_VERSION", "5.0.7"); require_once('../inc/inc.ClassSettings.php');