diff --git a/docs/changelog.rst b/docs/changelog.rst index 32fc390c1..b6df03f78 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,54 @@ Changelog ========= +Version 64.1 +------------ + +Released on 2025-02-20. + +Bug fixes: + +* `#2368 `_: + Fix ascent and descent font values +* `#2370 `_: + Avoid endless recursion for variables in nested functions +* `#2275 `_: + Use correct containing block to render waiting children +* `#2375 `_: + Ensure that we handle text-anchor only on text content elements +* `#2090 `_: + Only create font temporary folder when adding fonts +* `#2383 `_: + Fix grid-template-areas validation and allow uppercase identifiers for grid lines + +Contributors: + +* Guillaume Ayoub + +Backers and sponsors: + +* Spacinov +* Kobalt +* Grip Angebotssoftware +* Syslifters +* Simon Sapin +* Manuel Barkhau +* Simonsoft +* Menutech +* KontextWork +* TrainingSparkle +* Healthchecks.io +* Hammerbacher +* DocRaptor +* Yanal-Yves Fargialla +* Method B +* FieldHub +* Morntag +* Xavid +* Kai DeLorenzo +* Charlie S. + + Version 64.0 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index 4620a25a9..eb223b529 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -15,7 +15,7 @@ import tinycss2 import tinyhtml5 -VERSION = __version__ = '64.0' +VERSION = __version__ = '64.1' #: Default values for command-line and Python API options. See #: :func:`__main__.main` to learn more about specific options for