version 5.33.2

This commit is contained in:
Kovid Goyal 2021-12-04 14:57:39 +05:30
parent 918d9dbd50
commit d8f28f669c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.33.1 2021-12-03 {{{ 5.33.2 2021-12-03
:: new features :: new features
@ -57,8 +57,8 @@
- Google metadata plugin: When searching by ISBN if no results are found retry using an alternate query syntax - 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 - 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 metadata button in the edit metadata dialog on Windows, as well as reading files from MTP devices on Windows
:: improved recipes :: improved recipes
- Smithsonian Magazine - Smithsonian Magazine

View File

@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 33, 1) numeric_version = (5, 33, 2)
__version__ = '.'.join(map(str, numeric_version)) __version__ = '.'.join(map(str, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"