version 4.0.0

This commit is contained in:
Kovid Goyal 2019-10-04 05:56:13 +05:30
parent b6de056d57
commit 173c250162
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 14 additions and 1 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"