From 3564f97b6dddba1f59ebcafe00362aa66e92c2d1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 20 Apr 2019 07:40:39 +0530 Subject: [PATCH] version 3.41.3 --- Changelog.yaml | 4 ++-- src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 5edc11c210..2b032934f1 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -82,8 +82,8 @@ - title: "Adding books: When adding with auto-merge and auto-convert enabled, also run conversions for books into which the added files are merged." tickets: [1822018] - - title: "version 3.41.1 and 3.41.2 fix various regressions in the previous release that affect a few people." - tickets: [1825472, 1825494] + - title: "version 3.41.1, 3.41.2, 3.41.3 fix various regressions in the previous release that affect a few people." + tickets: [1825472, 1825494, 1825542] improved recipes: - Il Post diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d47c1154d6..53f08bdd42 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 41, 2) +numeric_version = (3, 41, 3) __version__ = u'.'.join(map(unicode_type, numeric_version)) __author__ = u"Kovid Goyal "