From 10bfd1406b674d2c16fd9c3670046d343de5f156 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Sep 2019 08:16:01 +0530 Subject: [PATCH] version 3.48.0 --- Changelog.yaml | 14 ++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 89923a0cab..b05b8e21f1 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,20 @@ # new recipes: # - title: +- version: 3.48.0 + date: 2019-09-13 + + new features: + - title: "Driver for Kobo Libra H2O" + + bug fixes: + - title: "Kobo driver: Fix some annotations getting missed for kepubs" + + improved recipes: + - Boston Globe + - Scientific American + + - version: 3.47.1 date: 2019-08-30 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 151318965e..5170272acb 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, 47, 1) +numeric_version = (3, 48, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "