From b2f74d0200eaead86c901575f2274bb80ffedf95 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 30 Oct 2020 12:58:50 +0530 Subject: [PATCH] version 5.4.1 Needed since 5.4.0 does not start via Launch Services on macOS --- Changelog.txt | 2 +- src/calibre/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index dfc7d8ecbf..ea2327974c 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -24,7 +24,7 @@ # }}} -{{{ 5.4.0 2020-10-30 +{{{ 5.4.1 2020-10-30 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 16c887737c..b75d705d0d 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, collections __appname__ = 'calibre' -numeric_version = (5, 4, 0) +numeric_version = (5, 4, 1) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "