version 3.1.1

This commit is contained in:
Kovid Goyal 2017-06-23 14:36:20 +05:30
parent 0d242c48ee
commit b0f5958aec
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,8 @@
tickets: [1698331] tickets: [1698331]
bug fixes: bug fixes:
- title: "Version 3.1.1 fixes a regression in 3.1.0 that prevented the standalone calibre-server.exe from working on Windows and macOS"
- title: "Content server: Fix various bugs in the SSL implementation causing aborted transfers when enabling SSL in the server" - title: "Content server: Fix various bugs in the SSL implementation causing aborted transfers when enabling SSL in the server"
- title: "Content server: Fix connections not being closed after errors/timeouts on the server side" - title: "Content server: Fix connections not being closed after errors/timeouts on the server side"

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