From 173c25016251497d7bfc50c4a7e68ba09c58aa03 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Oct 2019 05:56:13 +0530 Subject: [PATCH] version 4.0.0 --- Changelog.yaml | 13 +++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index b05b8e21f1..eb8872319a 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,19 @@ # new recipes: # - title: +- version: 4.0.0 + date: 2019-10-04 + + new features: + - title: "For details on the major changes in calibre between 3.0 and 4.0, see https://calibre-ebook.com/new-in/thirteen" + type: major + + - title: "A completely re-written E-book viewer with an emphasis on presenting the book text, distraction free" + type: major + + - title: "Note that the system requirements needed for calibre have been increased, details are present on the calibre download pages for each operating system" + + - version: 3.48.0 date: 2019-09-13 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 829da79b4b..f7aab6454a 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, 99, 9) +numeric_version = (4, 0, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "