From 47319bdccb95cbdff574cf13966e8f7e02cf0bcf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 2 Sep 2016 07:21:50 +0530 Subject: [PATCH] version 2.66.0 --- Changelog.yaml | 38 ++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index e8ee90a98f..b21de2c4e0 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,44 @@ # new recipes: # - title: +- version: 2.66.0 + date: 2016-09-02 + + new features: + - title: "A simplified calibre logo" + + - title: "Edit Book: Allow restricting a search to the files currently open for editing" + + - title: "Driver for the PocketBook Touch HD" + tickets: [1618962] + + - title: "Kobo driver: Add support for firmware version 3.20" + + bug fixes: + - title: "DOCX Input: Fix right-to-left alignment not working for footnotes." + tickets: [1617254] + + - title: "Sending email: Allow setting up a mail relay that uses encryption without a username and password." + tickets: [1618528] + + - title: "Linux: Fix calibre not working when the username is non-ASCII." + tickets: [1619056] + + - title: "DOCX Output: Ignore invalid text-indent values in the input document instead of erroring out." + tickets: [1618869] + + - title: "Portable Installer: Auto-create the installation folder specified on the command line if it does not exist" + + - title: "Kobo driver: Fix the ignore collections in option not working" + + - title: "More user interface fixes for high DPI screens" + + - title: "DOCX Input: Fix a regression in the previous release that could cause invalid values to be output for the text-align CSS property" + + new recipes: + - title: Contropiano + author: michele + - version: 2.65.1 date: 2016-08-26 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d3a43dd59e..8bd926becb 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (2, 65, 1) +numeric_version = (2, 66, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "