version 6.19.1

This commit is contained in:
Kovid Goyal 2023-05-29 13:48:01 +05:30
parent c05013c260
commit 1b6fc0668d
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.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

View File

@ -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 <kovid@kovidgoyal.net>"