From 85eb72e59e7fcf9d7c547734a89b0e132c2ac0a4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 Apr 2019 13:54:51 +0530 Subject: [PATCH] version 3.41.1 --- Changelog.yaml | 7 +++++-- src/calibre/constants.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 010a134c3f..64b7449292 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.41.0 +- version: 3.41.1 date: 2019-04-19 new features: @@ -43,7 +43,7 @@ - title: "Manage authors dialog: Add an entry to the right click menu to show books by the current author in the main book list." tickets: [1821992] - - title: "Lots of internal changes to calibre's codebase to prepare it for python 3 support." + - title: "Lots of internal changes to calibre's codebase to prepare it for Python 3 support." bug fixes: - title: "Content server: Fix links to external resources in book details and the viewer not working" @@ -82,6 +82,9 @@ - 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] + improved recipes: - Il Post - Le Monde Edition Abonnes Papier diff --git a/src/calibre/constants.py b/src/calibre/constants.py index f4977c72be..0f6f055882 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, 0) +numeric_version = (3, 41, 1) __version__ = u'.'.join(map(unicode_type, numeric_version)) __author__ = u"Kovid Goyal "