diff --git a/Changelog.yaml b/Changelog.yaml index d7b3f3fa34..50a7ec84d8 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.2.0 +- version: 3.2.1 date: 2017-06-29 new features: @@ -30,6 +30,8 @@ - title: "macOS: Add headless support: calibre command-line utilities can now run on macOS machines without a screen" bug fixes: + - title: "3.2.1 has a fix for an issue that broke mouse wheel scrolling in the cover grid view" + - title: "Viewer: Fix incorrect display of pages in paged mode for books that override the box-sizing CSS property on the element." tickets: [1700109] diff --git a/src/calibre/constants.py b/src/calibre/constants.py index f678ccdfbd..cb2e9a391f 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 2, 0) +numeric_version = (3, 2, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "