version 5.31.1

This commit is contained in:
Kovid Goyal 2021-10-29 14:49:34 +05:30
parent 7e6ca98605
commit 9cf1731d08
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 5.31.0 2021-10-29 {{{ 5.31.1 2021-10-29
:: new features :: new features
@ -45,6 +45,9 @@
- [1948560] Tag browser: Fix incorrect first letter partitioning when enabling numeric collation of items that start with a number - [1948560] Tag browser: Fix incorrect first letter partitioning when enabling numeric collation of items that start with a number
- [1949167] 5.31.1 fixes a bug in an HTML serialization library calibre uses that broke a few things, such as the comments editor
tool in the metadata dialog
}}} }}}
{{{ 5.30.0 2021-10-22 {{{ 5.30.0 2021-10-22

View File

@ -5,7 +5,7 @@ from polyglot.builtins import environ_item, hasenv
import sys, locale, codecs, os, collections, collections.abc import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (5, 31, 0) numeric_version = (5, 31, 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>"