version 3.47.1

This commit is contained in:
Kovid Goyal 2019-09-02 08:24:47 +05:30
parent 0b03e331c2
commit 91066f2010
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.47.0 - version: 3.47.1
date: 2019-08-30 date: 2019-08-30
new features: 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." - title: "LIT Output: Fix regression in 3.41 caused by py3 porting that broke conversion of some files to LIT."
tickets: [1837561] 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: improved recipes:
- Esquire - Esquire
- Foreign Affairs - Foreign Affairs

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, importlib, collections import sys, locale, codecs, os, importlib, collections
__appname__ = 'calibre' __appname__ = 'calibre'
numeric_version = (3, 47, 0) numeric_version = (3, 47, 1)
__version__ = '.'.join(map(unicode_type, numeric_version)) __version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"