Skip to content

Commit 36cac78

Browse files
committed
release: prepare v0.8.11 release
1 parent eafffea commit 36cac78

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

HISTORY.rst

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

6+
0.8.11 (2021-05-15)
7+
+++++++++++++++++++
8+
9+
- Small build changes and Python 3.8 version changes like collections.abc location.
10+
11+
612
0.8.10 (2019-01-08)
713
+++++++++++++++++++
814

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.10'
5+
__version__ = "0.8.11"
66

77

88
# register custom Part classes with opc package reader

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def text_of(relpath):
2121
# Read the version from docx.__version__ without importing the package
2222
# (and thus attempting to import packages it depends on that may not be
2323
# installed yet)
24-
version = re.search("__version__ = '([^']+)'", text_of("docx/__init__.py")).group(1)
24+
version = re.search(r'__version__ = "([^"]+)"', text_of("docx/__init__.py")).group(1)
2525

2626

2727
NAME = "python-docx"

0 commit comments

Comments
 (0)