diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b87e2..0a7a9d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.4.6 (2024-11-13) + +### Fix + +- :bug: Avoid overwriting images in some scenarios + ## v0.4.5 (2024-11-13) ### Fix diff --git a/process_dcm/__init__.py b/process_dcm/__init__.py index 98a433b..3dd3d2d 100644 --- a/process_dcm/__init__.py +++ b/process_dcm/__init__.py @@ -1 +1 @@ -__version__ = "0.4.5" +__version__ = "0.4.6" diff --git a/process_dcm/main.py b/process_dcm/main.py index 2159e2a..dbdd672 100644 --- a/process_dcm/main.py +++ b/process_dcm/main.py @@ -95,7 +95,7 @@ def main( ) -> None: """Process DICOM files in subfolders, extract images and metadata using parallel processing. - Version: 0.4.5 + Version: 0.4.6 """ task_processor = partial( process_task, diff --git a/pyproject.toml b/pyproject.toml index 799551a..9a7faca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "process-dcm" -version = "0.4.5" +version = "0.4.6" description = "Python library and app to extract images from DCM in private-eye format" authors = ["Alan Silva <3899850+alanwilter@users.noreply.github.com>"] readme = "README.md"