version 6.28.1

This commit is contained in:
Kovid Goyal 2023-10-07 16:37:30 +05:30
parent b0552e399b
commit 8f074ed42f
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
# }}} # }}}
{{{ 6.28.0 2023-10-06 {{{ 6.28.1 2023-10-07
:: new features :: new features
@ -61,6 +61,8 @@
- [2037237] Fix errors caused by .DS_Store files inserted into the .caltrash directory on macOS if the user happens to open .caltrash in Finder - [2037237] Fix errors caused by .DS_Store files inserted into the .caltrash directory on macOS if the user happens to open .caltrash in Finder
- Version 6.28.1 fixes a regression in 6.28.0 that could cause errors when merging some book records in calibre
:: improved recipes :: improved recipes
- National Geographic - National Geographic
- Bloomberg - Bloomberg

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 = (6, 28, 0) numeric_version = (6, 28, 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>"