diff --git a/Changelog.yaml b/Changelog.yaml index beda96bb42..3fab88e910 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,31 @@ # new recipes: # - title: +- version: 2.33.0 + date: 2015-07-24 + + new features: + - title: "Driver for SONY DPT-S1." + tickets: [1476093] + + - title: "Edit Book: When showing suggestions for mis-spelled words, also show suggestions from user created word lists" + + - title: 'Edit Book: Check Book: Add a check for "invalid" ids' + + bug fixes: + - title: "Conversion: Ignore stylesheets linked via media queries that use device specific features." + tickets: [1476089] + + - title: "Fix covers not being read from some TXTZ files." + tickets: [1475984] + + - title: "ODT Input: Add support for numbered lists that do not start numbering at 1." + tickets: [1475846] + + improved recipes: + - msnbc.com + - Houston Chronicle + - version: 2.32.1 date: 2015-07-17 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 27bebddb9a..49d613db05 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, 32, 1) +numeric_version = (2, 33, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "