diff --git a/CHANGELOG.md b/CHANGELOG.md index e7a9fe3..ef88e43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.4.4 (2024-11-12) + +### Fix + +- :bug: Able to handle OPTOS PSEUDOCOLOUR_ULTRAWIDEFIELD modality + ## v0.4.3 (2024-11-12) ### Fix diff --git a/process_dcm/__init__.py b/process_dcm/__init__.py index f6b7e26..cd1ee63 100644 --- a/process_dcm/__init__.py +++ b/process_dcm/__init__.py @@ -1 +1 @@ -__version__ = "0.4.3" +__version__ = "0.4.4" diff --git a/process_dcm/main.py b/process_dcm/main.py index 8ccb1e5..6647d15 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.3 + Version: 0.4.4 """ task_processor = partial( process_task, diff --git a/pyproject.toml b/pyproject.toml index 7c232db..d7e1aa0 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.3" +version = "0.4.4" 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"