version 2.79.1

This commit is contained in:
Kovid Goyal 2017-02-12 07:39:49 +05:30
parent 232053571e
commit 7c3ced5f8c
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 2.79.0 - version: 2.79.1
date: 2017-02-10 date: 2017-02-10
new features: new features:
@ -31,6 +31,8 @@
- title: "Conversion: Log options that are different from the defaults separately, for easy reference" - title: "Conversion: Log options that are different from the defaults separately, for easy reference"
bug fixes: 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." - title: "Conversion: Fix regression that broke conversion of some epub files when using the 'Remove first image' option."
tickets: [1660699] tickets: [1660699]

View File

@ -6,7 +6,7 @@ from future_builtins import map
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre' __appname__ = u'calibre'
numeric_version = (2, 79, 0) numeric_version = (2, 79, 1)
__version__ = u'.'.join(map(unicode, numeric_version)) __version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>" __author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"