diff --git a/docs/changelog.rst b/docs/changelog.rst index dc35fea5e..1fee2ebee 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,53 @@ Changelog ========= +Version 61.1 +------------ + +Released on 2024-02-26. + +Bug fixes: + +- `#2075 `_: + Use default value when variable is not defined +- `#2070 `_: + Don’t crash when rendering SVGs with non-text a children +- Don’t crash when SVG file can’t be rendered + +Documentation: + +- `#2067 `_: + Suggest "dnf" instead of "yum" to install Fedora packages +- Improve documentation for Windows +- Fix required version of TinyCSS2 + +Contributors: + +* Guillaume Ayoub +* Felix Schwarz +* Lucie Anglade + +Backers and sponsors: + +* Spacinov +* Kobalt +* Grip Angebotssoftware +* Manuel Barkhau +* SimonSoft +* Menutech +* KontextWork +* René Fritz +* Simon Sapin +* Arcanite +* TrainingSparkle +* Healthchecks.io +* Hammerbacher +* Docraptor +* Yanal-Yvez Fargialla +* Morntag +* NBCO + + Version 61.0 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index 8c9169837..409818ef4 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -15,7 +15,7 @@ import html5lib import tinycss2 -VERSION = __version__ = '61.0' +VERSION = __version__ = '61.1' #: Default values for command-line and Python API options. See #: :func:`__main__.main` to learn more about specific options for