diff --git a/Changelog.yaml b/Changelog.yaml index 5e3ad14f7c..d0c7bfb64d 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -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." diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d5dbdae50f..1dd87a86c7 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, 75, 0) +numeric_version = (2, 75, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "