version 5.7.1

This commit is contained in:
Kovid Goyal 2020-12-11 17:17:32 +05:30
parent cc970aa694
commit 96adf1912d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 3 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.7.0 2020-12-11 {{{ 5.7.1 2020-12-11
:: new features :: new features
@ -37,7 +37,7 @@
:: bug fixes :: bug fixes
- [1905967] PDF Output: Fix a regression in the previous release that broke text rendering for some fonts due to a bug in Qt WebEngine. - [1905967] PDF Output: Fix a regression in the previous release that broke text rendering for some fonts due to a bug in Qt WebEngine (full fix is in 5.7.1).
- [1905736] PDF Output: Fix conversion failing when adding header/footer and the input document defines margins/padding on the <html> tag. - [1905736] PDF Output: Fix conversion failing when adding header/footer and the input document defines margins/padding on the <html> tag.
@ -55,6 +55,8 @@
- [1906063] Fix template function "first_non_empty" fails if no argument evaluates non-empty - [1906063] Fix template function "first_non_empty" fails if no argument evaluates non-empty
- [1907773] Fix regression in 5.7.0 causing failure to start if one of the previously used libraries had a stored path ending in a slash.
:: improved recipes :: improved recipes
- The Guardian - The Guardian
- The Atlantic - The Atlantic

View File

@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, collections import sys, locale, codecs, os, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 7, 0) numeric_version = (5, 7, 1)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"