diff --git a/.travis.yml b/.travis.yml index 3345ff24f..fd69637be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: python python: - - "3.4" - - "3.3" + - "3.6" + - "3.5" - "2.7" - "2.6" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors diff --git a/HISTORY.rst b/HISTORY.rst index 5b947d561..1f6514d7e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,20 @@ Release History --------------- +0.8.7 (2018-08-18) +++++++++++++++++++ + +- Add _Row.height_rule +- Add _Row.height +- Add _Cell.vertical_alignment +- Fix #455: increment next_id, don't fill gaps +- Add #375: import docx failure on --OO optimization +- Add #254: remove default zoom percentage +- Add #266: miscellaneous documentation fixes +- Add #175: refine MANIFEST.ini +- Add #168: Unicode error on core-props in Python 2 + + 0.8.6 (2016-06-22) ++++++++++++++++++ diff --git a/docx/__init__.py b/docx/__init__.py index cfa48729d..7083abe56 100644 --- a/docx/__init__.py +++ b/docx/__init__.py @@ -2,7 +2,7 @@ from docx.api import Document # noqa -__version__ = '0.8.6' +__version__ = '0.8.7' # register custom Part classes with opc package reader