From 8c58e3b822c74cb1918bed73574ff4a9ac352499 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 4 Dec 2021 10:58:37 +0530 Subject: [PATCH] version 5.33.1 --- Changelog.txt | 5 ++++- src/calibre/constants.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 940f8d9239..e4c5208638 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 5.33.0 2021-12-03 +{{{ 5.33.1 2021-12-03 :: new features @@ -57,6 +57,9 @@ - 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 + :: improved recipes - Smithsonian Magazine diff --git a/src/calibre/constants.py b/src/calibre/constants.py index e96d8e6c21..2490f6a549 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, 0) +numeric_version = (5, 33, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "