diff --git a/Changelog.yaml b/Changelog.yaml index 6fe9ce04d3..7da50df857 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -21,7 +21,7 @@ # - title: -- version: 3.11.0 +- version: 3.11.1 date: 2017-11-02 new features: @@ -51,6 +51,8 @@ - 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: - Financial Times - computerworld.pl diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 2bd7e201b9..f1b0470270 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 11, 0) +numeric_version = (3, 11, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "