From 9e899253d2ffbfa96929adcc26294bc5403ffae5 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 10 Dec 2024 16:49:02 +0100 Subject: [PATCH] Version 63.1 --- docs/changelog.rst | 79 ++++++++++++++++++++++++++++++++++++++++++ weasyprint/__init__.py | 2 +- 2 files changed, 80 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2cd1e69fd..6a580d0cf 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,85 @@ Changelog ========= +Version 63.1 +------------ + +Released on 2024-12-10. + +Dependencies: + +* `#2297 `_: + Remove upper bounds for dependencies + +Bug fixes: + +* `#2300 `_, + `#2292 `_: + Don’t avoid floats for flex items +* `#2301 `_, + `#2293 `_: + Include floats in calculation of minimum cell height +* `#2303 `_, + `#2302 `_: + Set alpha even when current color channels didn’t change +* `#2306 `_: + Don’t try to increase column width when there’s no extra width +* `#2304 `_: + Don’t forget skip stack when drawing flex items +* `#2316 `_: + Don’t crash with SVG symbols +* `#2320 `_: + Fix currentcolor detection when parsing gradient color stops +* `#2322 `_, + `#2289 `_: + Don’t add DLL directories when using Windows executable +* `#2323 `_, + `#2305 `_: + Fix different rendering test + +Performance: + +* `#2319 `_: + Fix memory leaks + +Documentation: + +* `#2299 `_: + Update install instructions for Alpine +* `#2321 `_: + Add example invocation of WeasyPrint on the "Contribute" page + +Contributors: + +* Guillaume Ayoub +* Jó Ágila Bitsch +* Lucie Anglade +* Alexander Gitter +* Luke Cousins + +Backers and sponsors: + +* Spacinov +* Kobalt +* Grip Angebotssoftware +* Syslifters +* Manuel Barkhau +* SimonSoft +* Menutech +* KontextWork +* Simon Sapin +* TrainingSparkle +* Healthchecks.io +* Hammerbacher +* Advance Insight +* Docraptor +* Method B +* FieldHub +* Yanal-Yvez Fargialla +* Morntag +* Xavid + + Version 63.0 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index 51c3bb27a..40635bf0a 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -15,7 +15,7 @@ import tinycss2 import tinyhtml5 -VERSION = __version__ = '63.0' +VERSION = __version__ = '63.1' #: Default values for command-line and Python API options. See #: :func:`__main__.main` to learn more about specific options for