From fa89d52271d49af13272e65f322a653b8abc3c53 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 3 Apr 2026 08:42:43 +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 04d909fec1..9b6cb61621 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 = (9, 6, 0) +numeric_version = (9, 6, 100) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '