From 73bf99b833e45129d14227df71294ac1bafe8127 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Nov 2024 17:17:42 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.4.5=20=E2=86=92=200.4.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ process_dcm/__init__.py | 2 +- process_dcm/main.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) 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"