From e65b453bc1e3d2e35a18ac05607ae50b2e548a33 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 12 Feb 2017 23:18:00 -0400 Subject: [PATCH] Bump version to v.2.1.9. Add changelog and release notes. This is a micro version release to due to the Python Package Index not allowing re-uploads. --- HISTORY.rst | 4 +++ docs/releases/2.1.8.rst | 2 +- docs/releases/2.1.9.rst | 74 +++++++++++++++++++++++++++++++++++++++++ docs/releases/index.rst | 1 + mayan/__init__.py | 4 +-- 5 files changed, 82 insertions(+), 3 deletions(-) create mode 100644 docs/releases/2.1.9.rst diff --git a/HISTORY.rst b/HISTORY.rst index 70103fdc22..19876fd1a9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +2.1.9 (2017-02-13) +================== +- Update make file to Workaround long standing pypa wheel bug #99 + 2.1.8 (2017-02-12) ================== - Fixes in the trashed document API endpoints. diff --git a/docs/releases/2.1.8.rst b/docs/releases/2.1.8.rst index 82aa846878..ebe1ae8596 100644 --- a/docs/releases/2.1.8.rst +++ b/docs/releases/2.1.8.rst @@ -2,7 +2,7 @@ Mayan EDMS v2.1.8 release notes =============================== -Released: February XX, 2017 +Released: February 12, 2017 What's new ========== diff --git a/docs/releases/2.1.9.rst b/docs/releases/2.1.9.rst new file mode 100644 index 0000000000..f9c3333e86 --- /dev/null +++ b/docs/releases/2.1.9.rst @@ -0,0 +1,74 @@ +=============================== +Mayan EDMS v2.1.9 release notes +=============================== + +Released: February 13, 2017 + +What's new +========== + +This is a micro release equal to the previews version from the user's point of view. +The version number was increase to workaround some issues with the Python +Package Index not allowing re-uploads. + +Changes +------------- + +- Update make file to Workaround long standing pypa wheel bug #99 + +Removals +-------- +* None + +Upgrading from a previous version +--------------------------------- + +Using PIP +~~~~~~~~~ + +Type in the console:: + + $ pip install -U mayan-edms + +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 +=========================== + +* None + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 84cb057583..20f0924247 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 + 2.1.9 2.1.8 2.1.7 2.1.6 diff --git a/mayan/__init__.py b/mayan/__init__.py index 2e0898e7c8..5b002feecb 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.1.8' -__build__ = 0x020108 +__version__ = '2.1.9' +__build__ = 0x020109 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System'