From 2edc343f773fa1ac44e946275468262dd4393d8f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 9 Apr 2019 18:54:34 +0530 Subject: [PATCH] Bump version for beta --- 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 105eb730c1..80cbe9d223 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 40, 2) +numeric_version = (3, 40, 3) __version__ = u'.'.join(map(unicode_type, numeric_version)) __author__ = u"Kovid Goyal "