diff --git a/Changelog.yaml b/Changelog.yaml index 49b722226a..ad8e321992 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,36 @@ # new recipes: # - title: +- version: 3.33.0 + date: 2018-10-19 + + new features: + - title: "Driver for the new Kobo Forma" + + - title: "PDF Output: Add a new 'page number map' setting to easily modify page numbers as needed in headers/fotters and the generated inline table of contents." + tickets: [1796902] + + - title: "Edit book: Insert image: remember size of displayed thumbnails." + tickets: [1795845] + + - title: "Edit book: Compress images losslessly: Remember the last used compression quality for jpeg compression." + tickets: [1796950] + + bug fixes: + - title: "CHM Input: Fix a regression in the previous release that broke processing of CHM files." + tickets: [1796889] + + - title: "Fix clearing of metadata download author and tag map rules not working" + + - title: 'Fix notifications from calibre being displayed as "Others" on the GNOME desktop' + + improved recipes: + - Ambito Financiero + - Pagina 12 + - stuff.co.nz + - The New Zealand Herald + - Various Polish news sources + - version: 3.32.0 date: 2018-09-28 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d5932720b2..2443d15bad 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 32, 0) +numeric_version = (3, 33, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "