From a71bfb119af1f4ebc6b6804d646dbb53fded2a1c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 28 Sep 2012 10:04:41 +0530 Subject: [PATCH] version 0.9.0 --- Changelog.yaml | 45 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 6c3214c62f..47b4606791 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,51 @@ # new recipes: # - title: +- version: 0.9.0 + date: 2012-09-28 + + new features: + - title: "For a summary of the major changes in calibre between 0.8 and 0.9, see http://calibre-ebook.com/new-in/nine" + type: major + + bug fixes: + - title: "KF8 Output: Fix handling of & < and > entities in the text. They were sometimes being incorrectly unescaped." + + - title: "Calibre portable: Add a manifest to the portable installer exe to prevent the application compatibility wizard from warning about a possible failed installation on windows 7. Also fixes installer requiring admin privileges on some computers" + tickets: [1057042] + + - title: "EPUB metadata: Fix book producer not being set when updating EPUB metadata" + + - title: "EPUB metadata: Fix incorrect namespace on the role attribute of tags when updating the metadata in EPUB" + + - title: "Get Books: Fix incorrect price retrieval from ebooks.com." + tickets: [1055785] + + - title: "MTP windows driver: Fix main memory and storage card sometimes swapped" + tickets: [1055129] + + - title: "PDF Output: On windows, remove any embedded fonts before generating the PDF as on windows, Qt generates image based PDFs when embedded fonts are present." + tickets: [1053906] + + - title: "MTP windows driver: Do not try to connect to unsuitable devices such as the iPhone." + tickets: [1054562] + + - title: "KF8 Input: Handle files that use non ascii paths/anchor names in the guide entries." + tickets: [1053751] + + new recipes: + - title: Pubblico Giornale + author: iusvar + + improved recipes: + - Monitor Online + - El Pais + - Chronicle of Higher Education + - Baltimore Sun + - Mac World + - Maximum PC + - Financial Times UK + - version: 0.8.70 date: 2012-09-21 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 259ddd89b0..dd7abd89f5 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 = (0, 8, 70) +numeric_version = (0, 9, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "