From e33ec4b6ecdfb9b8d50f5feea5003bcf1a309a86 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 19 Jan 2026 19:31:27 +0530 Subject: [PATCH] Bump beta version --- 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 96e00e46c1..a0585212ff 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 = (8, 99, 7) +numeric_version = (8, 99, 8) __version__ = '.'.join(map(str, numeric_version)) git_version = None __author__ = 'Kovid Goyal '