From 800734915561e160f2ba62e9fcba81d31943f99e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 8 Apr 2023 08:46:56 +0530 Subject: [PATCH] version 6.15.1 --- Changelog.txt | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 49175caa1f..313ade7cb3 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,7 +23,7 @@ # - title by author # }}} -{{{ 6.15.0 2023-04-07 +{{{ 6.15.1 2023-04-07 :: new features @@ -62,6 +62,8 @@ - [2012760] Comments editor: When copying to clipboard, copy clean HTML rather than the junk Qt produces +- Version 6.15.1 fixes an issue with the new URL scheme popping up incorrect book details windows + :: improved recipes - Saechsische Zeitung - LA Times diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 56d6aa8e37..54aa9fe02f 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, 15, 0) +numeric_version = (6, 15, 1) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "