version 3.40.1

This commit is contained in:
Kovid Goyal 2019-03-08 11:39:34 +05:30
parent e3c295f252
commit f4a5b3edb0
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.40.0 - version: 3.40.1
date: 2019-03-08 date: 2019-03-08
new features: new features:
@ -75,6 +75,8 @@
- title: "Update the Get Books and metadata Amazon.com plugins to handle changes to the markup on the Amazon results page" - title: "Update the Get Books and metadata Amazon.com plugins to handle changes to the markup on the Amazon results page"
- title: "Version 3.40.1 fixes a bug in 3.40 that could prevent calibre starting when using a custom date column"
improved recipes: improved recipes:
- Scientific American - Scientific American
- Taipei Times - Taipei Times

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