diff --git a/Changelog.txt b/Changelog.txt index dd0690a839..a5a2a6cce9 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 5.33.1 2021-12-03 +{{{ 5.33.2 2021-12-03 :: new features @@ -57,8 +57,8 @@ - Google metadata plugin: When searching by ISBN if no results are found retry using an alternate query syntax -- 5.33.1 fixes a couple of regressions that broke the toolbar in the popup comments editor dialog and rendering of the download - metadata button in the edit metadata dialog on Windows +- 5.33.2 fixes a couple of regressions that broke the toolbar in the popup comments editor dialog and rendering of the download + metadata button in the edit metadata dialog on Windows, as well as reading files from MTP devices on Windows :: improved recipes - Smithsonian Magazine diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 2490f6a549..4eb00f61f8 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 33, 1) +numeric_version = (5, 33, 2) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "