From f74dcd25433183982b8b194697cd63e2c777069d Mon Sep 17 00:00:00 2001 From: Steve Canny Date: Sun, 22 Jun 2014 15:11:13 -0700 Subject: [PATCH] release: prepare v0.6.0 release --- HISTORY.rst | 9 +++++++++ README.rst | 2 ++ docs/index.rst | 3 ++- docx/__init__.py | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6c371c336..5f60b4227 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ Release History --------------- +0.6.0 (2014-06-22) +++++++++++++++++++ + +- Add feature #15: section page size +- Add feature #66: add section +- Add page margins and page orientation properties on Section +- Major refactoring of oxml layer + + 0.5.3 (2014-05-10) ++++++++++++++++++ diff --git a/README.rst b/README.rst index aeae3ebf6..82d1f0bd7 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,5 @@ +.. image:: https://travis-ci.org/python-openxml/python-docx.svg?branch=master + :target: https://travis-ci.org/python-openxml/python-docx *python-docx* is a Python library for creating and updating Microsoft Word (.docx) files. diff --git a/docs/index.rst b/docs/index.rst index a19a933f8..a79fa9644 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -4,7 +4,8 @@ python-docx Release v\ |version| (:ref:`Installation `) -.. include:: ../README.rst +*python-docx* is a Python library for creating and updating Microsoft Word +(.docx) files. What it can do diff --git a/docx/__init__.py b/docx/__init__.py index b6147da04..1bba46ad5 100644 --- a/docx/__init__.py +++ b/docx/__init__.py @@ -2,7 +2,7 @@ from docx.api import Document # noqa -__version__ = '0.5.3' +__version__ = '0.6.0' # register custom Part classes with opc package reader