Skip to content

Commit 1d4f9bc

Browse files
author
Steve Canny
committed
release: prepare v0.8.2 release
1 parent 395b48f commit 1d4f9bc

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

HISTORY.rst

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

6+
0.8.2 (2015-02-16)
7+
++++++++++++++++++
8+
9+
- Fix #94: picture prints at wrong size when scaled
10+
- Extract `docx.document.Document` object from `DocumentPart`
11+
12+
Refactor `docx.Document` from an object into a factory function for new
13+
`docx.document.Document object`. Extract methods from prior `docx.Document`
14+
and `docx.parts.document.DocumentPart` to form the new API class and retire
15+
`docx.Document` class.
16+
17+
- Migrate `Document.numbering_part` to `DocumentPart.numbering_part`. The
18+
`numbering_part` property is not part of the published API and is an
19+
interim internal feature to be replaced in a future release, perhaps with
20+
something like `Document.numbering_definitions`. In the meantime, it can
21+
now be accessed using ``Document.part.numbering_part``.
22+
23+
624
0.8.1 (2015-02-10)
725
++++++++++++++++++
826

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.8.1'
5+
__version__ = '0.8.2'
66

77

88
# register custom Part classes with opc package reader

0 commit comments

Comments
 (0)