version 3.11.1

This commit is contained in:
Kovid Goyal 2017-11-02 20:06:08 +05:30
parent 20dc23d87b
commit 32566d7c79
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -21,7 +21,7 @@
# - title: # - title:
- version: 3.11.0 - version: 3.11.1
date: 2017-11-02 date: 2017-11-02
new features: new features:
@ -51,6 +51,8 @@
- title: "Linux: Fix long startup delay on systems that do not have a desktop notification service running" - title: "Linux: Fix long startup delay on systems that do not have a desktop notification service running"
- title: "3.11.1 fixes a couple of regression in 3.11.0 that broke configuring Get books and creating catalogs"
improved recipes: improved recipes:
- Financial Times - Financial Times
- computerworld.pl - computerworld.pl

View File

@ -6,7 +6,7 @@ from future_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, 11, 0) numeric_version = (3, 11, 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>"