version 3.36.0

This commit is contained in:
Kovid Goyal 2018-12-21 08:29:34 +05:30
parent 5961223f77
commit 99d967e4f6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 22 additions and 1 deletions

View File

@ -20,6 +20,27 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.36.0
date: 2018-12-21
new features:
- title: "Happy Holidays to everyone!"
- title: "Kobo driver: Add supported for newly released firmware update"
bug fixes:
- title: "Kobo driver: Fix a regression in the last release that caused book title
to appear as unknown if metadata management was set to manual in calibre."
tickets: [1807914]
- title: "PDF Output: Do not fail if one of th efonts from the source document has no name metadata"
improved recipes:
- Wall Street Journal
- ESPN
- Al Jazeera (English)
- version: 3.35.0 - version: 3.35.0
date: 2018-12-07 date: 2018-12-07

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, 35, 0) numeric_version = (3, 36, 0)
__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>"