diff --git a/Changelog.yaml b/Changelog.yaml index 05156c651d..b3b293154f 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,18 @@ # new recipes: # - title: +- version: 3.44.0 + date: 2019-05-31 + + new features: + - title: "Driver for the new NOOK Glowlight Plus" + + - title: "Driver for updated Kobo firmware" + + bug fixes: + - title: "Amazon metadata plugin: Fix searching the Amazon servers directly not working because of changed markup" + + - version: 3.43.0 date: 2019-05-28 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 51c9dafa77..2980411e05 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 import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (3, 43, 0) +numeric_version = (3, 44, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "