From b287374cddc471dd3605baef05d33ccb8b00130b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 Feb 2019 23:13:29 +0530 Subject: [PATCH] version 3.39.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 16f5fe1393..9ef98f162a 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,7 +20,7 @@ # new recipes: # - title: -- version: 3.39.0 +- version: 3.39.1 date: 2019-02-01 new features: @@ -52,6 +52,9 @@ - title: "Fix editing of dates not working is the date format is set to iso." tickets: [1812560] + - title: "Version 3.39.1 fixes a bug in 3.39.0 that broke copy to library for books that have saved conversion options" + tickets: [1814279] + improved recipes: - Spiegel Online - Il Post diff --git a/src/calibre/constants.py b/src/calibre/constants.py index cc2474438f..1944e77e60 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 39, 0) +numeric_version = (3, 39, 1) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "