Skip to content

Commit

Permalink
release: prepare v0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Canny committed Feb 9, 2015
1 parent a6bef96 commit 3ec35da
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,45 @@
Release History
---------------

0.8.0 (2015-01-08)
++++++++++++++++++

- Add styles. Provides general capability to access and manipulate paragraph,
character, and table styles.

- Add ParagraphFormat object, accessible on Paragraph.paragraph_format, and
providing the following paragraph formatting properties:

+ paragraph alignment (justfification)
+ space before and after paragraph
+ line spacing
+ indentation
+ keep together, keep with next, page break before, and widow control

- Add Font object, accessible on Run.font, providing character-level
formatting including:

+ typeface (e.g. 'Arial')
+ point size
+ underline
+ italic
+ bold
+ superscript and subscript

The following issues were retired:

- Add feature #56: superscript/subscript
- Add feature #67: lookup style by UI name
- Add feature #98: Paragraph indentation
- Add feature #120: Document.styles

**Backward incompatibilities**

Paragraph.style now returns a Style object. Previously it returned the style
name as a string. The name can now be retrieved using the Style.name
property, for example, `paragraph.style.name`.


0.7.6 (2014-12-14)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion docx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from docx.api import Document # noqa

__version__ = '0.7.6'
__version__ = '0.8.0'


# register custom Part classes with opc package reader
Expand Down

0 comments on commit 3ec35da

Please sign in to comment.