From cbb2bcb68ffd8e80655edda9e918fa9ab8a33c9d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 22 Jan 2026 11:19:28 +0530 Subject: [PATCH] Bump beta version --- src/calibre/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/constants.py b/src/calibre/constants.py index fe4ea86d82..93448864b6 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -12,7 +12,7 @@ from functools import lru_cache from polyglot.builtins import environ_item, hasenv __appname__ = 'calibre' -numeric_version = (8, 99, 9) +numeric_version = (8, 99, 10) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '