Skip to content

Commit

Permalink
Merge branch '54.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
liZe committed Mar 2, 2022
2 parents a969ec1 + c1178a5 commit 7034d67
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 1 deletion.
53 changes: 53 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,59 @@ Changelog
=========


Version 54.2
------------

Released on 2022-02-27.

Bug fixes:

* `#1575 <https://github.com/Kozea/WeasyPrint/issues/1575>`_:
Always store parent blocks children as lists
* `#1574 <https://github.com/Kozea/WeasyPrint/issues/1574>`_,
`#1559 <https://github.com/Kozea/WeasyPrint/pull/1559>`_:
Fix float rounding errors
* `#1571 <https://github.com/Kozea/WeasyPrint/issues/1571>`_:
Ignore unknown glyphs
* `#1561 <https://github.com/Kozea/WeasyPrint/issues/1561>`_,
`#1562 <https://github.com/Kozea/WeasyPrint/issues/1562>`_:
Fix line break when breaks occur between a nbsp and an inline block
* `#1560 <https://github.com/Kozea/WeasyPrint/issues/1560>`_:
Always set the child index
* `#1558 <https://github.com/Kozea/WeasyPrint/issues/1558>`_:
Fix patterns with use tags

Contributors:

* Guillaume Ayoub
* Lucie Anglade
* Jack Lin
* aschmitz

Backers and sponsors:

* Grip Angebotssoftware
* Manuel Barkhau
* Crisp BV
* SimonSoft
* Menutech
* KontextWork
* Maykin Media
* René Fritz
* NCC Group
* Spacinov
* Nathalie Gutton
* Andreas Zettl
* Tom Pohl
* Kobalt
* Moritz Mahringer
* Florian Demmer
* Yanal-Yvez Fargialla
* Gábor
* Piotr Horzycki
* DeivGuerrero


Version 54.1
------------

Expand Down
4 changes: 4 additions & 0 deletions tests/test_css_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,6 +1196,10 @@ def test_text_align(rule, result):
('text-align: none', 'invalid'),
('text-align: start end', 'invalid'),
('text-align: 1', 'invalid'),
('text-align: left left', 'invalid'),
('text-align: top', 'invalid'),
('text-align: "right"', 'invalid'),
('text-align: 1px', 'invalid'),
))
def test_text_align_invalid(rule, reason):
assert_invalid(rule, reason)
2 changes: 1 addition & 1 deletion weasyprint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import html5lib
import tinycss2

VERSION = __version__ = '54.1'
VERSION = __version__ = '54.2'

__all__ = [
'HTML', 'CSS', 'Attachment', 'Document', 'Page', 'default_url_fetcher',
Expand Down

0 comments on commit 7034d67

Please sign in to comment.