From 25db09228f6e283a3d0e2467b61921a52f98cf4e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Jan 2016 23:17:09 +0530 Subject: [PATCH] version 2.50.1 Fixes 2.50 not working on some windows vista installs --- Changelog.yaml | 2 +- src/calibre/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index b6da42e149..46d6f30a0f 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 2.50.0 +- version: 2.50.1 date: 2016-01-29 new features: diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 2ff1ff8111..5333e669e4 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (2, 50, 0) +numeric_version = (2, 50, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "