diff --git a/HISTORY.rst b/HISTORY.rst index 516e8be49f..06bbe4ea80 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,3 @@ -3.2 (2018-XX-XX) -================ -* Add support for reindexing document on content parsing - changes. - 3.1.4 (2018-10-XX) ================== * Fix the link to the documenation. Closes GitLab issue #516. @@ -17,6 +12,8 @@ * Load the DropZone CSS from package and remove the hard code CSS from appearance/base.css. * Add support for indexing on OCR content changes. +* Add support for reindexing document on content parsing + changes. 3.1.3 (2018-09-27) ================== diff --git a/mayan/__init__.py b/mayan/__init__.py index 6caed0087e..33f29f1047 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.1.3' __build__ = 0x030101 -__build_string__ = '3.1.3_Thu Sep 27 04:19:45 2018 -0400' +__build_string__ = '3.1.3-19-g72678e31f_Wed Oct 3 15:14:18 2018 -0400' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System' diff --git a/requirements/common.txt b/requirements/common.txt index 9d66fff3f1..5f0e6689c3 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -1,2 +1,2 @@ -Django==1.11.15 +Django==1.11.16 -r base.txt diff --git a/setup.py b/setup.py index ddf57b9a44..95588c022e 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def find_packages(directory): return packages install_requires = """ -Django==1.11.15 +Django==1.11.16 Pillow==5.2.0 PyYAML==3.13 celery==3.1.24