version 6.2.1

This commit is contained in:
Kovid Goyal 2022-07-29 14:12:04 +05:30
parent 8236c1c788
commit c628c38cc4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author
# }}}
{{{ 6.2.0 2022-07-29
{{{ 6.2.1 2022-07-29
:: new features
@ -79,6 +79,8 @@
- Fix Qt WebEngine creating cache folders outside of the calibre cache directory
- Version 6.2.1 fixes a regression in 6.2.0 that caused the Read button in the Content server to only work for PDF books
:: improved recipes
- Frontline
- HBR

View File

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