diff --git a/HISTORY.md b/HISTORY.md index 22ed701..7656878 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,11 @@ # History -## v3.2.1 (02-06-24) -* WADO-RS Downloader now raises DICOMTrolleyError instead of OSErron parsing faulty dicom responses. Fixes #58 +## v3.3.0 (09-18-25) +* Drops python 3.8 and 3.9. Moves to 3.10 as minimum +* Drops poetry package management. Replaces with uv +* Updates Flake8 and Mypy versions for code checking + +## v3.2.1 (02-06-25) +* WADO-RS Downloader now raises DICOMTrolleyError instead of OSError, parsing faulty dicom responses. Fixes #58 ## v3.2.0 (17-09-24) * Moves to pydantic v2, releases pydantic 1.8.2 pin. See #54 diff --git a/pyproject.toml b/pyproject.toml index 989f2f3..1e841b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dicomtrolley" -version = "3.2.1" +version = "3.3.0" description = "Retrieve medical images via WADO-URI, WADO-RS, QIDO-RS, MINT, RAD69 and DICOM-QR" authors = ["sjoerdk "] readme = "README.md" @@ -40,4 +40,4 @@ dev = [ "mkdocs-autorefs>=0.5.0", "pip-tools>=7.3.0", "pre-commit" -] \ No newline at end of file +]