diff --git a/Makefile b/Makefile index c6628b89f..b38982a83 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=4.3.31 +VERSION=4.3.32 SRC=CHANGELOG inc conf utils index.php languages views op out doc drop-tables-innodb.sql styles TODO LICENSE Makefile webdav install restapi pdfviewer # webapp diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php index 596e2e9c3..8cbe01136 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -291,7 +291,7 @@ class SeedDMS_Core_DMS { $this->callbacks = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '4.3.31'; + $this->version = '4.3.32'; } /* }}} */ /** diff --git a/inc/inc.Version.php b/inc/inc.Version.php index f9a2c123d..027e8859b 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "4.3.31"; + public $_number = "4.3.32"; private $_string = "SeedDMS"; function __construct() { diff --git a/install/install.php b/install/install.php index ef1d20def..1b4855823 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", "4.3.31"); +define("SEEDDMS_VERSION", "4.3.32"); require_once('../inc/inc.ClassSettings.php');