version 7.15.0

This commit is contained in:
Kovid Goyal 2024-07-19 07:39:46 +05:30
parent 9d6ef84f70
commit 401ef3ad04
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 22 additions and 1 deletions

View File

@ -23,6 +23,27 @@
# - title by author
# }}}
{{{ 7.15.0 2024-07-19
:: new features
- Fetch news: Allow individual news sources to specify source specific options such as downloading of past editions
:: bug fixes
- [2073323] Windows: MTP driver: Fix a regression in the previous release that caused an error with some devices
- Icon theme creation dialog: Fix various issues when creating an icon theme with many icons that have light/dark variants
:: improved recipes
- Bloomberg
- Eenadu
- Mediapart
:: new recipes
- WSJ News by unkn0wn
}}}
{{{ 7.14.0 2024-07-12
:: new features

View File

@ -11,7 +11,7 @@ from functools import lru_cache
from polyglot.builtins import environ_item, hasenv
__appname__ = 'calibre'
numeric_version = (7, 14, 0)
numeric_version = (7, 15, 0)
__version__ = '.'.join(map(str, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"