Skip to content

Commit 3ec35da

Browse files
author
Steve Canny
committed
release: prepare v0.8.0 release
1 parent a6bef96 commit 3ec35da

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

HISTORY.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@
33
Release History
44
---------------
55

6+
0.8.0 (2015-01-08)
7+
++++++++++++++++++
8+
9+
- Add styles. Provides general capability to access and manipulate paragraph,
10+
character, and table styles.
11+
12+
- Add ParagraphFormat object, accessible on Paragraph.paragraph_format, and
13+
providing the following paragraph formatting properties:
14+
15+
+ paragraph alignment (justfification)
16+
+ space before and after paragraph
17+
+ line spacing
18+
+ indentation
19+
+ keep together, keep with next, page break before, and widow control
20+
21+
- Add Font object, accessible on Run.font, providing character-level
22+
formatting including:
23+
24+
+ typeface (e.g. 'Arial')
25+
+ point size
26+
+ underline
27+
+ italic
28+
+ bold
29+
+ superscript and subscript
30+
31+
The following issues were retired:
32+
33+
- Add feature #56: superscript/subscript
34+
- Add feature #67: lookup style by UI name
35+
- Add feature #98: Paragraph indentation
36+
- Add feature #120: Document.styles
37+
38+
**Backward incompatibilities**
39+
40+
Paragraph.style now returns a Style object. Previously it returned the style
41+
name as a string. The name can now be retrieved using the Style.name
42+
property, for example, `paragraph.style.name`.
43+
44+
645
0.7.6 (2014-12-14)
746
++++++++++++++++++
847

docx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from docx.api import Document # noqa
44

5-
__version__ = '0.7.6'
5+
__version__ = '0.8.0'
66

77

88
# register custom Part classes with opc package reader

0 commit comments

Comments
 (0)