version 9.1.0

This commit is contained in:
Kovid Goyal 2026-01-31 15:31:30 +05:30
parent aa6b2c9d0a
commit 803e49feb7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 26 additions and 1 deletions

View File

@ -23,6 +23,31 @@
# - title by author
# }}}
{{{ 9.1.0 2026-01-31
:: new features
- This is a pure bugfix release fixing various regressions in calibre 9.0
:: bug fixes
- [2139397] macOS: Fix crash when pasting cover image
- [2139455] Fix restore database not working
- [2139399] Windows: Fix the Read Aloud feature in the E-book viewer not working when using the Piper engine
- [2139454] Fix using icon themes in "For dark and light" mode not working
- Fix covers in the Cover grid slightly stretched on high DPI screens
- [2139414] Amazon metadata download: Fix publication date not being retrieved form amazon.co.jp
:: improved recipes
- Economist
}}}
{{{ 9.0.0 2026-01-30
:: new features

View File

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