Update release notes for version 3.0.1

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-07-08 02:11:39 -04:00
parent 0987bbe0fa
commit 306b764a5c
5 changed files with 79 additions and 3 deletions

View File

@@ -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) 3.0 (2018-06-29)
================ ================
- Rename the role groups link label from "Members" to "Groups". - Rename the role groups link label from "Members" to "Groups".

View File

@@ -1 +1 @@
3.0 3.0.1

70
docs/releases/3.0.1.rst Normal file
View File

@@ -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 <https://gitlab.com/mayan-edms/mayan-edms/issues/486>`_ Docker Verison 3.0 not working
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/

View File

@@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases.
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
3.0.1
3.0 3.0

View File

@@ -1,8 +1,8 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__title__ = 'Mayan EDMS' __title__ = 'Mayan EDMS'
__version__ = '3.0' __version__ = '3.0.1'
__build__ = 0x030000 __build__ = 0x030001
__author__ = 'Roberto Rosario' __author__ = 'Roberto Rosario'
__author_email__ = 'roberto.rosario@mayan-edms.com' __author_email__ = 'roberto.rosario@mayan-edms.com'
__description__ = 'Free Open Source Electronic Document Management System' __description__ = 'Free Open Source Electronic Document Management System'