From bc8b734f341ebbacc3d9397a60bea1ae04e1f435 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 16 Aug 2024 08:29:13 +0530 Subject: [PATCH] Bump version for preview build --- 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 3b92462f16..3bc1dbd24d 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, 16, 0) +numeric_version = (7, 16, 100) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = "Kovid Goyal "