1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-26 12:48:53 +03:00

Version 56.0b1

This commit is contained in:
Guillaume Ayoub 2022-06-17 11:50:32 +02:00
parent 788c98c2ed
commit b8a5d118a8
2 changed files with 70 additions and 1 deletions

View File

@ -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 <https://github.com/Kozea/WeasyPrint/pull/1660>`_:
Support nested line-clamp, with financial support from Expert Germany
* `#1644 <https://github.com/Kozea/WeasyPrint/pull/1644>`_,
`#1645 <https://github.com/Kozea/WeasyPrint/issues/1645>`_:
Support bitmap fonts, with financial support from Expert Germany
* `#1651 <https://github.com/Kozea/WeasyPrint/pull/1651>`_,
`#630 <https://github.com/Kozea/WeasyPrint/issues/630>`_:
Support PDF/A, with financial support from Blueshoe
Bug fixes:
* `#1656 <https://github.com/Kozea/WeasyPrint/issues/1656>`_:
Fix chained variables in the same selector block
* `#1028 <https://github.com/Kozea/WeasyPrint/issues/1028>`_:
Fix font weight management in @font-face rules
* `#1653 <https://github.com/Kozea/WeasyPrint/issues/1653>`_:
Dont crash when @font-faces src ends with a comma
* `#1650 <https://github.com/Kozea/WeasyPrint/issues/1650>`_:
Dont check origin when URL only contains fragment
* `e38bff8 <https://github.com/Kozea/WeasyPrint/commit/e38bff8>`_:
Dont crash when inherited SVG attributes are not set on the parent
Performance:
* `e6021da <https://github.com/Kozea/WeasyPrint/commit/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
------------

View File

@ -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',