From 91066f2010c6672bdc0a383e0e4723ec4b226a3b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 Sep 2019 08:24:47 +0530 Subject: [PATCH] version 3.47.1 --- Changelog.yaml | 5 ++++- src/calibre/constants.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index a4bcf32a0b..89923a0cab 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.47.0 +- version: 3.47.1 date: 2019-08-30 new features: @@ -58,6 +58,9 @@ - title: "LIT Output: Fix regression in 3.41 caused by py3 porting that broke conversion of some files to LIT." tickets: [1837561] + - title: "Version 3.47.1 fixes an error when using internet lookup from the book details panel and the e-book viewer, and also the tweak to control number of columns in the edit metadata dialog not working" + tickets: [1842158,1842183,1842090,1842201] + improved recipes: - Esquire - Foreign Affairs diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 753fa28e97..151318965e 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (3, 47, 0) +numeric_version = (3, 47, 1) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "