From 92a8ef32401788deffcce9fe989b086894c3d8f0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 Apr 2019 18:06:13 +0530 Subject: [PATCH] version 3.41.2 --- Changelog.yaml | 4 ++-- src/calibre/constants.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 64b7449292..5edc11c210 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 fixes a regresion in the previous release that broke connecting to Calibre Companion and similar apps wirelessly" - tickets: [1825472] + - title: "version 3.41.1 and 3.41.2 fix various regressions in the previous release that affect a few people." + tickets: [1825472, 1825494] improved recipes: - Il Post diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0f6f055882..d47c1154d6 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, 1) +numeric_version = (3, 41, 2) __version__ = u'.'.join(map(unicode_type, numeric_version)) __author__ = u"Kovid Goyal "