diff --git a/Changelog.yaml b/Changelog.yaml index 93af267abe..beda96bb42 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 2.32.0 +- version: 2.32.1 date: 2015-07-17 new features: @@ -44,6 +44,8 @@ - title: "Edit Book: Allow drag and drop of files onto dock icon on OS X" bug fixes: + - title: "There was a regression in 2.32.0 that caused conversion to PDF to fail, the fix for this was released in 2.32.1" + - title: "E-book viewer: Fix a regression in the previous release that caused the maximum text width setting in full screen mode to be ignored when switching from normal to full screen." tickets: [1467164] diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ed1e843e3f..27bebddb9a 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, 0) +numeric_version = (2, 32, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "