version 5.39.1

This commit is contained in:
Kovid Goyal 2022-03-20 10:03:51 +05:30
parent cfebe99209
commit c81e84687d
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 # - title by author
# }}} # }}}
{{{ 5.39.0 2022-03-18 {{{ 5.39.1 2022-03-18
:: new features :: new features
@ -35,6 +35,8 @@
:: bug fixes :: bug fixes
- 5.39.1 fixes a couple of regressions that broke case change in the Bulk metadata edit dialog and remembering column widths in the book list on some systems.
- [1964742] Content server: Fix reading of books with thousands of internal files not working in the Chrome browser - [1964742] Content server: Fix reading of books with thousands of internal files not working in the Chrome browser
- [1965182] Catalog generation: Fix a rare crash when generating very large catalogs - [1965182] Catalog generation: Fix a rare crash when generating very large catalogs

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 39, 0) numeric_version = (5, 39, 1)
__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>"