diff --git a/Changelog.yaml b/Changelog.yaml index a4ddc85df8..9d7a7c4916 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,42 @@ # new recipes: # - title: +- version: 4.10.0 + date: 2020-01-07 + + new features: + - title: "Viewer: When searching have single and double quotes match their curly variants as well." + tickets: [1861715] + + bug fixes: + - title: "Fix a regression that caused the edit metadata individually and convert individually actions to use the bulk actions when multiple books are selected." + + - title: "Linux: Fix a crash caused by broken/incompatible CUPS Qt system plugin." + tickets: [1861741] + + - title: "Viewer: Fix search shortcut button not focusing search input if the search panel is placed in a tab or a floating window" + + - title: "Update Google Images cover download plugin for website markup changes" + tickets: [1862034] + + - title: "Catalog generation: Ignore invalid pubdates" + + - title: "Viewer: Stop autoscroll when changing page layout mode." + tickets: [1861621] + + - title: "zipfile: Fix regression that broke handling of zipfiles with internal filenames not encoded in UTF-8." + tickets: [1860889] + + - title: "Check Book: Turn off unique headings CSS warning" + + - title: "DOCX Output: When a list item contains a nested listed but no text, it should be output as an empty list item." + + + improved recipes: + - The New Yorker + - Financiele Dagblad + + - version: 4.9.1 date: 2020-01-23 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 75c561dccb..e5198fc68a 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv, a import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (4, 9, 1) +numeric_version = (4, 10, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "