diff --git a/CHANGES b/CHANGES index 2916fefd1..2a25b84e0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,30 @@ WeasyPrint changelog ==================== +Version 0.26 +------------ + +Released on 2016-01-29. + +New features: + +* Support the `empty-cells` attribute. +* Respect table, column and cell widths. + +Bug fixes: + +* `#172: `_: + Unable to set table column width on tables td's. +* `#151: `_: + Table background colour bleeds beyond table cell boundaries. +* `#260: `_: + TypeError: unsupported operand type(s) for +: 'float' and 'str'. +* `#288: `_: + Unwanted line-breaks in bold text. +* `#286: `_: + AttributeError: 'Namespace' object has no attribute 'attachments'. + + Version 0.25 ------------ diff --git a/weasyprint/__init__.py b/weasyprint/__init__.py index eae008793..1c4febf2d 100644 --- a/weasyprint/__init__.py +++ b/weasyprint/__init__.py @@ -19,7 +19,7 @@ import html5lib # noqa -VERSION = '0.25' +VERSION = '0.26' __version__ = VERSION # Used for 'User-Agent' in HTTP and 'Creator' in PDF