From 1b6fc0668d0c6380d6ef3a21209c5fcdbe3a74ca Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 May 2023 13:48:01 +0530 Subject: [PATCH] version 6.19.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 b931485aa3..3d4ae4ab5e 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 6.19.0 2023-05-29 +{{{ 6.19.1 2023-05-29 :: new features @@ -45,6 +45,8 @@ - [2020906] Fix row height incorrect in Manage category dialog when blank +- [2021452] 6.19.1 fixes a bug in 6.19.0 that broke the edit metadata dialog + }}} {{{ 6.18.1 2023-05-26 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 45d23b0dde..c794f21b36 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 = (6, 19, 0) +numeric_version = (6, 19, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "