diff --git a/aicssegmentation/__init__.py b/aicssegmentation/__init__.py index 378fd789..f8045404 100644 --- a/aicssegmentation/__init__.py +++ b/aicssegmentation/__init__.py @@ -6,7 +6,7 @@ __email__ = "jianxuc@alleninstitute.org" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "0.3.0" +__version__ = "0.4.1" def get_module_version(): diff --git a/aicssegmentation/workflow/batch_workflow.py b/aicssegmentation/workflow/batch_workflow.py index fba8c415..751d94a6 100644 --- a/aicssegmentation/workflow/batch_workflow.py +++ b/aicssegmentation/workflow/batch_workflow.py @@ -146,11 +146,17 @@ def write_log_file_summary(self): Write a log file to the output folder. """ if self._processed_files == 0: - report = "There were no files to process in the input directory" + report = ( + f"There were no files to process in the input directory to process \n " + f"Using the Workflow: {self._workflow_definition.name}" + ) else: files_processed = self._processed_files - self._failed_files - report = f"{files_processed}/{self._processed_files} files were successfully processed." + report = ( + f"{files_processed}/{self._processed_files} files were successfully processed \n " + f"Using the Workflow: {self._workflow_definition.name}" + ) self._write_to_log_file(report) def _format_image_to_3d(self, image: AICSImage) -> np.ndarray: diff --git a/setup.cfg b/setup.cfg index eaf2e521..8762eb7f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.4.1 commit = True tag = True diff --git a/setup.py b/setup.py index 0f1b07f2..f453f563 100644 --- a/setup.py +++ b/setup.py @@ -92,6 +92,6 @@ url="https://github.com/AllenCell/aicssegmentation", # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.rst - version="0.3.0", + version="0.4.1", zip_safe=False, )