From bc44d1d71a6080ed8d8047b563f2a1dc6b6bc57c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 14 Dec 2012 09:05:13 +0530 Subject: [PATCH] version 0.9.10 --- Changelog.yaml | 31 +++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 8ce51eb380..cef951cc1e 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,37 @@ # new recipes: # - title: +- version: 0.9.10 + date: 2012-12-14 + + new features: + - title: "Drivers for Nextbook Premium 8 se, HTC Desire X and Emerson EM 543" + tickets: [1088149, 1088112, 1087978] + + bug fixes: + - title: "Fix rich text delegate not working with Qt compiled in debug mode." + tickets: [1089011] + + - title: "When deleting all books in the library, blank the book details panel" + + - title: "Conversion: Fix malformed values in the bgcolor attribute causing conversion to abort" + + - title: "Conversion: Fix heuristics applying incorrect style in some circumstances" + tickets: [1066507] + + - title: "Possible fix for 64bit calibre not starting up on some Windows systems" + tickets: [1087816] + + improved recipes: + - Sivil Dusunce + - Anchorage Daily News + - Le Monde + - Harpers + + new recipes: + - title: Titanic + author: Krittika Goyal + - version: 0.9.9 date: 2012-12-07 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 164d2822a3..9526798303 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, 9, 9) +numeric_version = (0, 9, 10) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "