From 514a49ae777775bd70dc913d969492d1f0f01b23 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 6 Jul 2018 18:25:38 +0530 Subject: [PATCH] version 3.27.1 --- Changelog.yaml | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 361782cccb..5a3a1585c6 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.27.0 +- version: 3.27.1 date: 2018-07-06 new features: @@ -46,6 +46,8 @@ - title: "calibre-smtp: Verify relay server TLS certificates by default. New option --dont-verify-server-certificate to restore old behavior." bug fixes: + - title: "Version 3.27.1 fixes a build error in 3.27.0 that caused calibre not to start on macOS older than High Sierra" + - title: "Conversion: Fix a regression in the previous release that caused conversion of EPUB 3 to EPUB 3 to fail." tickets: [1779518] diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 1e42d8d469..aa013fa939 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, 27, 0) +numeric_version = (3, 27, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "