diff --git a/Changelog.txt b/Changelog.txt index 5b3c5e0b54..97961663f2 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index dcf987402a..fcd83b93ef 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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 "