From 2ec4e0b51c407c718aaf8d2d680738402f7838dd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 9 Mar 2025 10:41:16 +0530 Subject: [PATCH] Bump preview release version Since the USBMS drivers were broken in Windows in the previous preview release, so another. --- 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 3858ebf779..d9e2392377 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, 26, 102) +numeric_version = (7, 26, 103) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '