From b0f5958aec43eb4da2922fc639fafdb4c37ca763 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 23 Jun 2017 14:36:20 +0530 Subject: [PATCH] version 3.1.1 --- Changelog.yaml | 2 ++ src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index aeb595f789..e47f68e45b 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -35,6 +35,8 @@ tickets: [1698331] 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 connections not being closed after errors/timeouts on the server side" diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 63e4269eec..b353b53f7b 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, 1, 0) +numeric_version = (3, 1, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "