From e2cf4642ccb79c537eefe313cca207d118c7464b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 13 May 2017 10:59:20 +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 e2095acff0..7ae4491ff0 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, 3) +numeric_version = (2, 99, 4) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "