version 6.7.1

This commit is contained in:
Kovid Goyal 2022-10-15 07:34:37 +05:30
parent dc821ded5b
commit 74208b5330
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 1 deletions

View File

@ -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 - 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 :: improved recipes
- The Athletic - The Athletic
- der Standard - der Standard

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