diff --git a/Changelog.txt b/Changelog.txt index 66d6a2b836..59c2fbda43 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0e8064d9b5..4e9b0de30a 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, 14, 0) +numeric_version = (6, 14, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "