From c0034fa9b010de4961924c02939513e5cfecf654 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 17 Feb 2023 11:00:13 +0100 Subject: [PATCH] Version 58.0 --- docs/changelog.rst | 40 ++++++++++++++++++++++++++++++++++++++++ weasyprint/__init__.py | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3ee3f0bf3..c18dab092 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,46 @@ Changelog ========= +Version 58.0 +------------ + +Released on 2023-02-17. + +This version also includes the changes from unstable b1 version listed +below. + +Bug fixes: + +* `#1807 `_: + Don’t crash when out-of-flow box is split in out-of-flow parent +* `#1806 `_: + Don’t crash when fixed elements aren’t displayed yet in aborted line +* `#1809 `_: + Fix background drawing for out-of-the-page transformed boxes + +Contributors: + +* Guillaume Ayoub + +Backers and sponsors: + +* Kobalt +* Grip Angebotssoftware +* Crisp BV +* Spacinov +* Castedo Ellerman +* Manuel Barkhau +* SimonSoft +* Menutech +* KontextWork +* NCC Group +* René Fritz +* Moritz Mahringer +* Yanal-Yvez Fargialla +* Piotr Horzycki +* Healthchecks.io + + Version 58.0b1 -------------- diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index 062c3d103..00061795f 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -13,7 +13,7 @@ import html5lib import tinycss2 -VERSION = __version__ = '58.0b1' +VERSION = __version__ = '58.0' __all__ = [ 'HTML', 'CSS', 'Attachment', 'Document', 'Page', 'default_url_fetcher',