diff --git a/docs/changelog.rst b/docs/changelog.rst index 6f09fcc74..f47ecf572 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,73 @@ Changelog ========= +Version 57.0b1 +-------------- + +Released on 2022-09-22. + +**This version is experimental, don't use it in production. If you find bugs, +please report them!** + +New features: + +* `#1704 `_: + Support PDF/UA, with financial support from Novareto +* `#1454 `_: + Support variable fonts + +Bug fixes: + +* `#1058 `_: + Fix bullet position after page break, with financial support from OpenZeppelin +* `#1707 `_: + Fix footnote positioning in multicolumn layout, with financial support from Code & Co. +* `#1722 `_: + Handle skew transformation with only one parameter +* `#1715 `_: + Don’t crash when images are truncated +* `#1697 `_: + Don’t crash when attr() is used in text-decoration-color +* `#1695 `_: + Include language information in PDF metadata +* `#1612 `_: + Don’t lowercase letters when capitalizing text +* `#1700 `_: + Fix crash when rendering footnote with repagination +* `#1667 `_: + Follow EXIF metadata for image rotation +* `#1669 `_: + Take care of floats when remvoving placeholders +* `#1638 `_: + Use the original box when breaking waiting children + +Contributors: + +* Guillaume Ayoub +* Konstantin Weddige +* VeteraNovis +* Lucie Anglade + +Backers and sponsors: + +* Grip Angebotssoftware +* Manuel Barkhau +* Crisp BV +* SimonSoft +* Menutech +* Spacinov +* KontextWork +* René Fritz +* NCC Group +* Kobalt +* Tom Pohl +* John R Ellis +* Moritz Mahringer +* Gábor +* Piotr Horzycki +* Andrew Ittner + + Version 56.1 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index f8f3a20a7..c5bf869d0 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -13,7 +13,7 @@ import html5lib import tinycss2 -VERSION = __version__ = '56.1' +VERSION = __version__ = '57.0b1' __all__ = [ 'HTML', 'CSS', 'Attachment', 'Document', 'Page', 'default_url_fetcher',