X Tutup
Skip to content

Commit fde03bb

Browse files
author
Steve Canny
committed
release: v0.4.0
1 parent 50feb20 commit fde03bb

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

HISTORY.rst

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

6+
0.4.0 (2014-03-01)
7+
++++++++++++++++++
8+
9+
- Advance from alpha to beta status.
10+
- Add pure-python image header parsing; drop Pillow dependency
11+
12+
613
0.3.0a5 (2014-01-10)
714
++++++++++++++++++++++
815

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ help:
1010
@echo " accept run acceptance tests using behave"
1111
@echo " clean delete intermediate work product and start fresh"
1212
@echo " coverage run nosetests with coverage"
13-
@echo " docs generate documentation
13+
@echo " docs generate documentation"
1414
@echo " readme update README.html from README.rst"
1515
@echo " register update metadata (README.rst) on PyPI"
1616
@echo " test run tests using setup.py"

docs/user/install.rst

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,14 @@ Installing
44
==========
55

66
.. note:: python-docx versions 0.3.0 and later are not API-compatible with
7-
prior versions. Alpha users are encouraged to install in a virtualenv if
8-
they wish to continue using an installed prior version.
7+
prior versions.
98

109
|docx| is hosted on PyPI, so installation is relatively simple, and just
1110
depends on what installation utilities you have installed.
1211

1312
|docx| may be installed with ``pip`` if you have it available::
1413

15-
pip install --pre python-docx
16-
17-
Note the ``--pre`` flag, which is required by recent versions of ``pip`` to
18-
install pre-release versions, those with a version string having an alpha
19-
suffix like ``0.3.0a1``. This protects the unsuspecting from upgrading to
20-
a pre-release version.
14+
pip install python-docx
2115

2216
|docx| can also be installed using ``easy_install``, although this is
2317
discouraged::

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.3.0a5'
5+
__version__ = '0.4.0'
66

77

88
# register custom Part classes with opc package reader

0 commit comments

Comments
 (0)
X Tutup