diff --git a/Changelog.yaml b/Changelog.yaml index 5e6c38d14c..fffeff38d8 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,35 @@ # new recipes: # - title: +- version: 2.35.0 + date: 2015-08-14 + + new features: + - title: "Kobo driver: Add support for the new firmware version 3.17" + tickets: [1484516] + + - title: "E-book viewer: Allow setting the number of pages per screen separately for portrait and landscape modes." + tickets: [1483313] + + bug fixes: + - title: "DOCX Input: Fix a regression in the previous release that broke conversion of some documents that specify vertical alignment in absolute units" + + - title: "Book list: Fix the current row number being partially cutoff on some windows 10 machines." + tickets: [1482993] + + - title: "Fix 'stopping content server' message popping up repeatedly even when it is closed while the content server has not fully stopped" + + - title: "Conversion: Fix error when converting a file that uses media queries with comments in the media selector." + tickets: [1482983] + + improved recipes: + - American Spectator + - South China Morning Post + + new recipes: + - title: 3D News and iXBT.com + author: bugmen00t + - version: 2.34.0 date: 2015-08-07 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index b4d8989d6a..798a1aa5c0 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, 34, 0) +numeric_version = (2, 35, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "