From e8d113211f11a4eed0ccfc501a01c8a935a9d15a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 9 Jun 2017 09:41:03 +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 7e6f059fff..6de9aca70d 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, 10) +numeric_version = (2, 99, 11) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "