version 3.38.1

This commit is contained in:
Kovid Goyal 2019-01-18 20:10:27 +05:30
parent 8c8d520ff6
commit 5c335d0418
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.38.0 - version: 3.38.1
date: 2019-01-18 date: 2019-01-18
new features: new features:
@ -60,6 +60,8 @@
- title: "PDF Output: Fix conversion failing when fonts with non-English names are used." - title: "PDF Output: Fix conversion failing when fonts with non-English names are used."
tickets: [1812218] 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: improved recipes:
- Chicago Tribune - Chicago Tribune
- New York Times Book Review - New York Times Book Review

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre' __appname__ = u'calibre'
numeric_version = (3, 38, 0) numeric_version = (3, 38, 1)
__version__ = u'.'.join(map(unicode, numeric_version)) __version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>" __author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"