version 6.14.1

This commit is contained in:
Kovid Goyal 2023-03-16 06:23:38 +05:30
parent 42a4e729ca
commit 3a43e6bb0a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author
# }}}
{{{ 6.14.0 2023-03-10
{{{ 6.14.1 2023-03-16
:: new features
@ -43,6 +43,12 @@
- [2009735] Check book: Fix some incorrect line numbers reported in a few CSS error messages
- Fix regression in 6.14.0 that caused some generated resources to be excluded from the calibre source bundle
- [2011586] Fix regression in 6.14.0 that broke using paths with single quotes in them for the calibre library
- Fix ToC Editor on macOS in 6.14.0 not working inside the Edit book tool only
:: improved recipes
- Strange Horizons
- The Saturday Paper

View File

@ -5,7 +5,7 @@ from functools import lru_cache
import sys, locale, codecs, os, collections, collections.abc
__appname__ = 'calibre'
numeric_version = (6, 14, 0)
numeric_version = (6, 14, 1)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"