From 3636e380f35f9c326bdfab366702f2b557f67665 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 20 May 2016 17:15:27 +0530 Subject: [PATCH] version 2.57.1 --- Changelog.yaml | 4 +++- src/calibre/constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 4b00f8130e..877efa4c2d 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 2.57.0 +- version: 2.57.1 date: 2016-05-20 new features: @@ -62,6 +62,8 @@ - title: "Preferences->Keyboard: Fix unable to use Alt+A and Alt+S as custom shortcuts." tickets: [1576721] + - title: "Version 2.57.1 is a hotfix to fix a regression that broke conversion of ODT files in 2.57.0" + improved recipes: - Folha de Sao Paolo - Barrons diff --git a/src/calibre/constants.py b/src/calibre/constants.py index c87009de08..d91f0b70a0 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, 57, 0) +numeric_version = (2, 57, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "