version 3.20.0

This commit is contained in:
Kovid Goyal 2018-03-23 09:57:37 +05:30
parent bbb6f7752d
commit 8bc874e9a6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 22 additions and 1 deletions

View File

@ -20,6 +20,27 @@
# new recipes:
# - title:
- version: 3.20.0
date: 2018-03-23
new features:
- title: "Content server: Allow editing the metadata of books from the book details page"
type: major
description: "On the book details page, you can now edit any metadata and change covers by clicking the edit metadata icon in the right area of the top bar. Note that only users that have write permissions for the library can edit metadata."
- title: "Kobo driver: Recognize Kobo Aura 2 with new firmware (4.6.10188)"
bug fixes:
- title: 'When reading metadata from HTML also recognize <meta name="dc.description"> as being comments'
improved recipes:
- Danas
- Al monitor
- Folha de Sao Paolo
- New York Times
- Wirtschaft's Woche
- version: 3.19.0
date: 2018-03-09

View File

@ -6,7 +6,7 @@ from future_builtins import map
import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre'
numeric_version = (3, 19, 0)
numeric_version = (3, 20, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"