version 2.75.1

This commit is contained in:
Kovid Goyal 2016-12-25 10:02:55 +05:30
parent 97ea2edc8f
commit 4317b2601f
2 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes:
# - title:
- version: 2.75.0
- version: 2.75.1
date: 2016-12-23
new features:
@ -32,6 +32,8 @@
tickets: [1649371]
bug fixes:
- title: "Version 2.75.1 has fixes for a regression in 2.75.0 that broke the Live CSS feature in the editor and caused some minor problems in the viewer"
- title: "Kobo driver: Fix incorrectly sized covers being sent to some Kobo devices"
- title: "E-book viewer: Prevent javascript in the book from accessing files on the computer using XMLHttpRequest."

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (2, 75, 0)
numeric_version = (2, 75, 1)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"