From 205d5d432c4758401c84d1dc6b0d5dd0d360a55d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 12 Dec 2020 14:26:45 +0530 Subject: [PATCH] version 5.7.2 --- Changelog.txt | 4 ++-- src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 2960673e4b..9a2937d3e3 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 5.7.1 2020-12-11 +{{{ 5.7.2 2020-12-12 :: new features @@ -37,7 +37,7 @@ :: 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 (full fix is in 5.7.1). +- [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.2). - [1905736] PDF Output: Fix conversion failing when adding header/footer and the input document defines margins/padding on the tag. diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 2f9d36699e..648a7c1fbf 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, collections __appname__ = 'calibre' -numeric_version = (5, 7, 1) +numeric_version = (5, 7, 2) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "