From b8a5d118a890dbdb8a542ba6e8e19269bd9b68da Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 17 Jun 2022 11:50:32 +0200 Subject: [PATCH] Version 56.0b1 --- docs/changelog.rst | 69 ++++++++++++++++++++++++++++++++++++++++++ weasyprint/__init__.py | 2 +- 2 files changed, 70 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index e3e0ac9b..2f128df4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,75 @@ Changelog ========= +Version 56.0b1 +-------------- + +Released on 2022-06-17. + +**This version is experimental, don't use it in production. If you find bugs, +please report them!** + +Dependencies: + +* pydyf 0.2.0+ is now needed + +Features: + +* `#1660 `_: + Support nested line-clamp, with financial support from Expert Germany +* `#1644 `_, + `#1645 `_: + Support bitmap fonts, with financial support from Expert Germany +* `#1651 `_, + `#630 `_: + Support PDF/A, with financial support from Blueshoe + +Bug fixes: + +* `#1656 `_: + Fix chained variables in the same selector block +* `#1028 `_: + Fix font weight management in @font-face rules +* `#1653 `_: + Don’t crash when @font-face’s src ends with a comma +* `#1650 `_: + Don’t check origin when URL only contains fragment +* `e38bff8 `_: + Don’t crash when inherited SVG attributes are not set on the parent + +Performance: + +* `e6021da `_: + Launch tests in parallel by default + +Contributors: + +* Guillaume Ayoub +* aschmitz +* Lucie Anglade + +Backers and sponsors: + +* Grip Angebotssoftware +* Manuel Barkhau +* Crisp BV +* SimonSoft +* Menutech +* Spacinov +* KontextWork +* René Fritz +* NCC Group +* Kobalt +* Des images et des mots +* Andreas Zettl +* Tom Pohl +* Moritz Mahringer +* Florian Demmer +* Yanal-Yvez Fargialla +* Gábor +* Piotr Horzycki + + Version 55.0 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index cee4f86c..b9f12223 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -13,7 +13,7 @@ import cssselect2 import html5lib import tinycss2 -VERSION = __version__ = '55.0' +VERSION = __version__ = '56.0b1' __all__ = [ 'HTML', 'CSS', 'Attachment', 'Document', 'Page', 'default_url_fetcher',