version 3.39.1

This commit is contained in:
Kovid Goyal 2019-02-01 23:13:29 +05:30
parent 437170afe9
commit b287374cdd
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:
# - 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

View File

@ -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 <kovid@kovidgoyal.net>"