From c415bb9f08700a0dc02a49b4d5a65b36ebcafb1d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 31 May 2019 09:18:11 +0530 Subject: [PATCH] version 3.44.0 --- Changelog.yaml | 12 ++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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 "