diff --git a/Changelog.yaml b/Changelog.yaml index a8c49ae6fc..48495f57bf 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -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 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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d5e2a9ac0f..74a4990423 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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 "