From 7c3ced5f8c107f4e09a4d0ff551991de70de7749 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 12 Feb 2017 07:39:49 +0530 Subject: [PATCH] version 2.79.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 4d69c0504c..0260ce88b0 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 2.79.0 +- version: 2.79.1 date: 2017-02-10 new features: @@ -31,6 +31,8 @@ - title: "Conversion: Log options that are different from the defaults separately, for easy reference" bug fixes: + - title: "2.79.1 fixes a regression in 2.79.0 that broke the file open dialogs on windows vista" + - title: "Conversion: Fix regression that broke conversion of some epub files when using the 'Remove first image' option." tickets: [1660699] diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 3952b06da7..6a5e9c9e5e 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, 79, 0) +numeric_version = (2, 79, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "