diff --git a/docs/changelog.rst b/docs/changelog.rst index 321e39dfe..9ee9b8ea0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -30,7 +30,72 @@ API changes: Version 53.0b2 -------------- -Not released yet. +Released on 2021-05-30. + +**This version is experimental, don't use it in production. If you find bugs, +please report them!** + +New features: + +* `#359 `_: + Embed full sets of fonts in PDF + +Bug fixes: + +* `#1345 `_: + Fix position of SVG use tags +* `#1346 `_: + Handle "stroke-dasharray: none" +* `#1352 `_, + `#1358 `_: + Sort link target identifiers +* `#1357 `_: + Fix font information +* `#1362 `_: + Handle visibility and display properties in SVG +* `#1365 `_: + Cascade inherited attributes for use tags +* `#1366 `_: + Correctly handle style attributes in SVG +* `#1367 `_: + Include line stroke in box bounding + +Documentation: + +* `#1341 `_: + Fix typos + +Contributors: + +* Guillaume Ayoub +* aschmitz +* John Jackson +* Lucie Anglade +* Pelle Bo Regener + +Backers and sponsors: + +* OpenEdition +* print-css.rocks +* Simonsoft +* PDF Blocks +* Menutech +* Manuel Barkhau +* Simon Sapin +* Grip Angebotssoftware +* KontextWork +* René Fritz +* Nathalie Gutton +* Andreas Zettl +* Tom Pohl +* Maykin Media +* Moritz Mahringer +* Florian Demmer +* Mohammed Y. Alnajdi +* NCC Group +* Des images et des mots +* Yanal-Yvez Fargialla +* Yevhenii Hyzyla Version 53.0b1 diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index 0a1862b2f..9aa1bc173 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -16,7 +16,7 @@ import html5lib import tinycss2 -VERSION = __version__ = '53.0b1' +VERSION = __version__ = '53.0b2' __all__ = [ 'HTML', 'CSS', 'Attachment', 'Document', 'Page', 'default_url_fetcher',