diff --git a/Changelog.yaml b/Changelog.yaml index d9bd80ac54..3fa661135c 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,45 @@ # new recipes: # - title: +- version: 2.17.0 + date: 2015-01-23 + + new features: + - title: "Edit Book: A new reports tool that shows a summary of files, images, words, characters and styles used in the book." + description: "The reports tool is a great way to get an overview of the different parts of your book. Every line in the report is hot-linked, double clicking it jumps to the places in the book where that item is used." + type: major + + - title: "Edit Book: Allow adding the 'Manage Snippets' action to the toolbar, for easy access" + + bug fixes: + - title: "Update Ozon.ru metadata download plugin for website changes." + tickets: [1407265] + + - title: "E-book viewer: Fix regression in 'flow' mode that caused horizontal scrollbar to be rendered as vertical." + tickets: [1409916] + + - title: "Fix a regression that prevented adding of books from sub-folders if the folder contained only an OPF file and no actual ebook files." + tickets: [1411240] + + improved recipes: + - Salon.com + - The Onion + - Haaretz + - Jot Down + - Le Monde Diplomatique + - tyzden + - The AJC + + new recipes: + - title: TheAtlantic.com + author: ebrandon + + - title: The Conversation + author: Krittika Goyal + + - title: Apple Daily (TW) + author: Yulun Shih + - version: 2.16.0 date: 2015-01-10 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 0eb1c910c4..4368deead1 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (2, 16, 0) +numeric_version = (2, 17, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "