Skip to content

Commit d65e632

Browse files
committed
Prepare release of lxml 4.9.1.
1 parent 86368e9 commit d65e632

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
lxml changelog
33
==============
44

5+
4.9.1 (2022-07-01)
6+
==================
7+
8+
Bugs fixed
9+
----------
10+
11+
* A crash was resolved when using ``iterwalk()`` (or ``canonicalize()``)
12+
after parsing certain incorrect input. Note that ``iterwalk()`` can crash
13+
on *valid* input parsed with the same parser *after* failing to parse the
14+
incorrect input.
15+
16+
517
4.9.0 (2022-06-01)
618
==================
719

doc/main.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ Index <http://pypi.python.org/pypi/lxml/>`_ (PyPI). It has the source
160160
that compiles on various platforms. The source distribution is signed
161161
with `this key <pubkey.asc>`_.
162162

163-
The latest version is `lxml 4.9.0`_, released 2022-06-01
164-
(`changes for 4.9.0`_). `Older versions <#old-versions>`_
163+
The latest version is `lxml 4.9.1`_, released 2022-07-01
164+
(`changes for 4.9.1`_). `Older versions <#old-versions>`_
165165
are listed below.
166166

167167
Please take a look at the
@@ -256,7 +256,9 @@ See the websites of lxml
256256
..
257257
and the `latest in-development version <https://lxml.de/dev/>`_.
258258

259-
.. _`PDF documentation`: lxmldoc-4.9.0.pdf
259+
.. _`PDF documentation`: lxmldoc-4.9.1.pdf
260+
261+
* `lxml 4.9.1`_, released 2022-07-01 (`changes for 4.9.1`_)
260262

261263
* `lxml 4.9.0`_, released 2022-06-01 (`changes for 4.9.0`_)
262264

@@ -280,6 +282,7 @@ See the websites of lxml
280282

281283
* `older releases <https://lxml.de/4.6/#old-versions>`_
282284

285+
.. _`lxml 4.9.1`: /files/lxml-4.9.1.tgz
283286
.. _`lxml 4.9.0`: /files/lxml-4.9.0.tgz
284287
.. _`lxml 4.8.0`: /files/lxml-4.8.0.tgz
285288
.. _`lxml 4.7.1`: /files/lxml-4.7.1.tgz
@@ -291,6 +294,7 @@ See the websites of lxml
291294
.. _`lxml 4.6.1`: /files/lxml-4.6.1.tgz
292295
.. _`lxml 4.6.0`: /files/lxml-4.6.0.tgz
293296

297+
.. _`changes for 4.9.1`: /changes-4.9.1.html
294298
.. _`changes for 4.9.0`: /changes-4.9.0.html
295299
.. _`changes for 4.8.0`: /changes-4.8.0.html
296300
.. _`changes for 4.7.1`: /changes-4.7.1.html

src/lxml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# this is a package
22

3-
__version__ = "4.9.0"
3+
__version__ = "4.9.1"
44

55

66
def get_include():

0 commit comments

Comments
 (0)