version 5.33.1

This commit is contained in:
Kovid Goyal 2021-12-04 10:58:37 +05:30
parent a475b97cef
commit 8c58e3b822
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"