diff --git a/HISTORY.rst b/HISTORY.rst index c8125849b5..b71f17da25 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,8 @@ - Add support for document page search - Remove recent searches feature - Remove dependency on the django-filetransfer library +- Fix height calculation in resize transformation +- Improve upgrade instructions 2.1.4 (2016-10-28) ================== diff --git a/docs/releases/2.2.rst b/docs/releases/2.2.rst index ca6deb05e9..e4cb383126 100644 --- a/docs/releases/2.2.rst +++ b/docs/releases/2.2.rst @@ -14,6 +14,8 @@ Other changes - Add support for page search - Remove recent searches feature - Remove dependency on the django-filetransfer library +- Fix height calculation in resize transformation +- Improve upgrade instructions Removals -------- @@ -22,8 +24,8 @@ Removals Upgrading from a previous version --------------------------------- -Using PIP -~~~~~~~~~ +If installed via PIP +~~~~~~~~~~~~~~~~~~~~ Type in the console:: @@ -31,8 +33,8 @@ Type in the console:: the requirements will also be updated automatically. -Using Git -~~~~~~~~~ +If installed using Git +~~~~~~~~~~~~~~~~~~~~~~ If you installed Mayan EDMS by cloning the Git repository issue the commands:: @@ -42,14 +44,17 @@ If you installed Mayan EDMS by cloning the Git repository issue the commands:: otherwise download the compressed archived and uncompress it overriding the existing installation. -Next upgrade/add the new requirements:: +Manually upgrade/add the new requirements:: - $ pip uninstall -y django-filetransfers $ pip install --upgrade -r requirements.txt Common steps ~~~~~~~~~~~~ +Remove deprecated requirements:: + + $ pip uninstall -y -r removals.txt 2> /dev/null + Migrate existing database schema with:: $ mayan-edms.py performupgrade @@ -70,5 +75,6 @@ Bugs fixed or issues closed =========================== * `GitLab issue #311 `_ acl page return ContentType:Document +* `GitLab issue #319 `_ TransformationResize issue with very "long" image .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/removals.txt b/removals.txt new file mode 100644 index 0000000000..f1f6e99e49 --- /dev/null +++ b/removals.txt @@ -0,0 +1,2 @@ +# Packages to be remove during upgrades +django-filetransfers