diff --git a/Makefile b/Makefile
index da5e7de2f..d7bdd965d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION=4.3.32
+VERSION=4.3.33
SRC=CHANGELOG inc conf utils index.php languages views op out doc styles LICENSE webdav install restapi pdfviewer
# webapp
diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php
index 26b2f2a67..b8a3bcac2 100644
--- a/SeedDMS_Core/Core/inc.ClassDMS.php
+++ b/SeedDMS_Core/Core/inc.ClassDMS.php
@@ -307,7 +307,7 @@ class SeedDMS_Core_DMS {
$this->callbacks = array();
$this->version = '@package_version@';
if($this->version[0] == '@')
- $this->version = '4.3.32';
+ $this->version = '4.3.33';
} /* }}} */
/**
diff --git a/SeedDMS_Core/package.xml b/SeedDMS_Core/package.xml
index a4eafc53c..592a74efd 100644
--- a/SeedDMS_Core/package.xml
+++ b/SeedDMS_Core/package.xml
@@ -12,11 +12,11 @@
uwe@steinmann.cx
yes
- 2017-01-12
-
+ 2017-02-22
+
- 4.3.32
- 4.3.32
+ 4.3.33
+ 4.3.33
stable
@@ -24,9 +24,10 @@
GPL License
-- order groups by name returned by getReadAccessList()
-- add optional parameter to SeedDMS_Core_DMS::filterDocumentLinks()
-- SeedDMS_Core_DMS::search() can search for document/folder id
+- SeedDMЅ_Core_DMS::getTimeline() no longer returns duplicate documents
+- SeedDMЅ_Core_Document::addContent() sets workflow after status was set
+- SeedDMЅ_Core_Keyword::setOwner() fix sql statement
+- SeedDMЅ_Core_User::setFullname() minor fix in sql statement
@@ -1090,5 +1091,23 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
- add check for cycles in workflow SeedDMS_Core_Workflow::checkForCycles()
+
+ 2017-01-12
+
+
+ 4.3.32
+ 4.3.32
+
+
+ stable
+ stable
+
+ GPL License
+
+- order groups by name returned by getReadAccessList()
+- add optional parameter to SeedDMS_Core_DMS::filterDocumentLinks()
+- SeedDMS_Core_DMS::search() can search for document/folder id
+
+
diff --git a/inc/inc.Version.php b/inc/inc.Version.php
index 027e8859b..6cf507074 100644
--- a/inc/inc.Version.php
+++ b/inc/inc.Version.php
@@ -20,7 +20,7 @@
class SeedDMS_Version {
- public $_number = "4.3.32";
+ public $_number = "4.3.33";
private $_string = "SeedDMS";
function __construct() {
diff --git a/install/install.php b/install/install.php
index 1b4855823..1c2ffe5dd 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.32");
+define("SEEDDMS_VERSION", "4.3.33");
require_once('../inc/inc.ClassSettings.php');