From 74208b5330a3a4650a11cc187fb4875b1b840baf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 15 Oct 2022 07:34:37 +0530 Subject: [PATCH] version 6.7.1 --- Changelog.txt | 2 ++ src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.txt b/Changelog.txt index 925f95f942..0ff985981a 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -45,6 +45,8 @@ - Edit book: Preview panel: In dark mode when all of the background/foreground/link colors are set to "No change" do not render the book using dark colors +- Version 6.7.1 fixes a regression in the previous release that broke the delete specific format from book function + :: improved recipes - The Athletic - der Standard diff --git a/src/calibre/constants.py b/src/calibre/constants.py index cc121c6997..d2a71ec4df 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, 7, 0) +numeric_version = (6, 7, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "