From b1df7917261a832eb3b7bb8b13e36ba9dd902c29 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Jul 2025 08:22:39 +0530 Subject: [PATCH] Bump version for preview release --- 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 90f8e8143c..7c5fd39ef0 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 = (8, 7, 0) +numeric_version = (8, 7, 100) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '