From 5c335d041864b9e5be2ae9279518277995475498 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Jan 2019 20:10:27 +0530 Subject: [PATCH] version 3.38.1 --- Changelog.yaml | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index f9661b1ff6..de1250c385 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.38.0 +- version: 3.38.1 date: 2019-01-18 new features: @@ -60,6 +60,8 @@ - title: "PDF Output: Fix conversion failing when fonts with non-English names are used." tickets: [1812218] + - title: "3.38.1 fixes a typo in 3.38.0 that caused the Polish books function to not work when polishing small numbers of books" + improved recipes: - Chicago Tribune - New York Times Book Review diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 82f39d82a7..f5cd2ee24a 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 38, 0) +numeric_version = (3, 38, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "