diff --git a/HISTORY.rst b/HISTORY.rst index dfa70f89d3..3892901959 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,8 @@ +3.0.1 (208-07-08) +================= +- Pin javascript libraries to specific versions to avoid using + potentianlly broken updates automatically. GitLab issue #486. + 3.0 (2018-06-29) ================ - Rename the role groups link label from "Members" to "Groups". diff --git a/docker/version b/docker/version index 9f55b2ccb5..cb2b00e4f7 100755 --- a/docker/version +++ b/docker/version @@ -1 +1 @@ -3.0 +3.0.1 diff --git a/docs/releases/3.0.1.rst b/docs/releases/3.0.1.rst new file mode 100644 index 0000000000..a6d7bb1a3f --- /dev/null +++ b/docs/releases/3.0.1.rst @@ -0,0 +1,70 @@ +=============================== +Mayan EDMS v3.0.1 release notes +=============================== + +Released: July 08, 2018 + +What's new +========== +- Pin javascript libraries to specific versions to avoid using + potentianlly broken updates automatically. GitLab issue #486. + +Removals +-------- +- None + +Upgrading from a previous version +--------------------------------- + + +Using PIP +~~~~~~~~~ + +Type in the console:: + + $ pip install mayan-edms==3.0.1 + +the requirements will also be updated automatically. + + +Using Git +~~~~~~~~~ + +If you installed Mayan EDMS by cloning the Git repository issue the commands:: + + $ git reset --hard HEAD + $ git pull + +otherwise download the compressed archived and uncompress it overriding the +existing installation. + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + + +Common steps +~~~~~~~~~~~~ + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py collectstatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +============================= + +* None + +Bugs fixed or issues closed +=========================== + +* `GitLab issue #486 `_ Docker Verison 3.0 not working + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 6b35a19ea4..e304e09d5e 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 3.0.1 3.0 diff --git a/mayan/__init__.py b/mayan/__init__.py index a38e83461e..e01b611ec8 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.0' -__build__ = 0x030000 +__version__ = '3.0.1' +__build__ = 0x030001 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System'