From c81e84687de9e8716ecc7531611c286087607af3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 20 Mar 2022 10:03:51 +0530 Subject: [PATCH] version 5.39.1 --- Changelog.txt | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 6ae96a7ae1..c7197ba717 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 5.39.0 2022-03-18 +{{{ 5.39.1 2022-03-18 :: new features @@ -35,6 +35,8 @@ :: 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 - [1965182] Catalog generation: Fix a rare crash when generating very large catalogs diff --git a/src/calibre/constants.py b/src/calibre/constants.py index b37608ba4a..bfda36023b 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from functools import lru_cache import sys, locale, codecs, os, collections, collections.abc __appname__ = 'calibre' -numeric_version = (5, 39, 0) +numeric_version = (5, 39, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "