From 5d61f5e8fdd6fcff6e0e5f4e7a22fe0d07034d77 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 28 May 2019 09:31:11 +0530 Subject: [PATCH] version 3.43.0 --- Changelog.yaml | 42 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 49ff0dfc36..95b6a4a152 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,48 @@ # new recipes: # - title: +- version: 3.43.0 + date: 2019-05-25 + + new features: + - title: "Kobo driver: Support for new Kobo firmware" + + - title: "Edit metadata dialog: Remember relative sizes of the cover and comments editors." + tickets: [1828291] + + bug fixes: + - title: "PDF Output: Fix hang when converting some documents." + ticket: [1829535] + + - title: "Handle newlines when serializing to csr files" + tickets: [1827198] + + - title: "Fix searching in manage tags throws away all changes" + tickets: [1828986] + + - title: "Fix a regression in the previous release that broke using the wireless device driver with the device_for_template option" + + - title: "Fix metadata download from Amazon stripping accents from comments text in the binary builds" + + - title: "Amazon metadata download: Fix some downloads failing when a mobile user agent is randomnly selected." + tickets: [1827027] + + - title: "LRF Input: Fix a regression that broke parsing LRF files." + tickets: [1826970] + + - title: "PDF Input: Workaround for pdftohtml not always producing valid UTF-8." + tickets: [1830568] + + improved recipes: + - The Toronto Star + - The Financial Express + - London Review of Books + - Boston Globe Subscription + + new recipes: + - title: The Baffler + author: Jose Ortiz + - version: 3.42.0 date: 2019-04-30 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 66ec64b16f..51c9dafa77 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, 42, 0) +numeric_version = (3, 43, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "