Skip to content

Commit

Permalink
0.14.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed May 24, 2024
1 parent 1bee598 commit a8b0173
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@



## v0.14.0 (2024-05-24)

### Feature

* feat: Update pydantic-core dependency to version 2.18.2 ([`1bee598`](https://github.com/jjjermiah/PyDicomSorter/commit/1bee598f723cb12b3c946850ca48551d7d7238b0))

* feat: Add validation for DICOM keys in DICOMSorter

The `DICOMSorter` class now includes a `validate_keys` method that validates the keys used for sorting DICOM files. If any invalid keys are found, an error is raised. The method also provides suggestions for closest matches to the invalid keys. This improves the reliability and accuracy of the sorting process. ([`3a80573`](https://github.com/jjjermiah/PyDicomSorter/commit/3a80573bce437e82c73c715419bdae8447f6dbd1))


## v0.13.0 (2024-05-24)

### Chore
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#__________________________________________________________________________________________________#
[project]
name = "pydicomsorter"
version = "0.13.0"
version = "0.14.0"
description = "A Quick Tool For Sorting Dicom Files"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/pydicomsorter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .cli import cli
from .io import find_dicom_files

version = '0.13.0'
version = '0.14.0'

__all__ = [
'find_dicom_files',
Expand Down

0 comments on commit a8b0173

Please sign in to comment.