version 6.15.1

This commit is contained in:
Kovid Goyal 2023-04-08 08:46:56 +05:30
parent 11bb21af15
commit 8007349155
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -23,7 +23,7 @@
# - title by author # - title by author
# }}} # }}}
{{{ 6.15.0 2023-04-07 {{{ 6.15.1 2023-04-07
:: new features :: new features
@ -62,6 +62,8 @@
- [2012760] Comments editor: When copying to clipboard, copy clean HTML rather than the junk Qt produces - [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 :: improved recipes
- Saechsische Zeitung - Saechsische Zeitung
- LA Times - LA Times

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