From 3de72fd9ca1c2b54bbb5f1f2a0bb0c64b35e1a88 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 27 May 2017 11:25:10 +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 9b76177bcf..670ec16b37 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (2, 99, 7) +numeric_version = (2, 99, 8) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "