From fa9ebbb908a55d3b7c84270d68dcbb93eaf4ba4a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 12 Jun 2017 21:39:08 +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 1f908e8780..cdb0d9f8f3 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, 12) +numeric_version = (2, 99, 13) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "