From 94699ecc32c99737e96613bd2fa4c377f2d98c2c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 15 Nov 2015 09:41:38 +0530 Subject: [PATCH] version 2.44.1 --- Changelog.yaml | 7 +++++++ src/calibre/constants.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index cdef59f191..525e8595a4 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,13 @@ # new recipes: # - title: +- version: 2.44.1 + date: 2015-11-15 + + bug fixes: + - title: "Update the version of libpng bundled with calibre to fix a security vulnerability in libpng" + description: "See https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-8126 for details on the vulnerability" + - version: 2.44.0 date: 2015-11-13 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 9ea5a9cca6..ad92fd7cf2 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, 44, 0) +numeric_version = (2, 44, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "