From 614b58c3b62269b7d6de88ee9ef52728eeb0cc96 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 24 Jan 2025 09:01:30 +0530 Subject: [PATCH] Bump version for beta 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 d485a59ab6..e91f24b47d 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, 24, 100) +numeric_version = (7, 24, 101) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "