From f3ef3b3588a59b268a9e9d7000fe925df0c1321e Mon Sep 17 00:00:00 2001 From: Siavash Mirarab Date: Mon, 12 Aug 2024 10:07:35 -0400 Subject: [PATCH] 4.5.4: increment version --- CHANGELOG.md | 4 +++- sepp/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6d7637..f6f1cbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -* * Version 4.5.3: +* Version 4.5.4: + * Slight improvements in logging key information +* Version 4.5.3: * Make sure SEPP and HMMER version is outputted to log * Update documents to ask users to cite HMMER * Version 4.5.2: diff --git a/sepp/__init__.py b/sepp/__init__.py index c15bf91..00d9cf0 100644 --- a/sepp/__init__.py +++ b/sepp/__init__.py @@ -27,7 +27,7 @@ 'jobs', 'math_utils', 'problem', 'scheduler', 'scratch', 'tree', 'get_logger', 'is_temp_kept', 'version'] -version = "4.5.3" +version = "4.5.4" _DEBUG = ("SEPP_DEBUG" in os.environ) and \ (os.environ["SEPP_DEBUG"].lower() == "true") diff --git a/setup.py b/setup.py index 62cfdd8..ee5b2ac 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ from distutils.core import setup, Command use_setuptools(version="0.6.24") -version = "4.5.3" +version = "4.5.4" def get_tools_dir(where):