From 017117e6bd0822e17359135860b38c5b699564a9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 May 2017 14:13:55 +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 057af58b9f..2eb7d815f9 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, 8) +numeric_version = (2, 99, 9) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "