diff --git a/CHANGES.md b/CHANGES.md index 1f09779..85f22d5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,13 +1,14 @@ # Dicom Validator Release Notes The released versions correspond to PyPi releases. -## [Version 0.5.0] (Unreleased) +## [Version 0.5.0](https://pypi.python.org/pypi/dicom-validator/0.5.0) (2024-01-25) +Adds enum checks and fixes a regression. ### Features * added checking of most enumerated values (see [#54](../../issues/54)) ### Fixes -* fixed a regression that causes an exception in the DICOM dump tool +* fixed a regression that causes an exception in the DICOM dump tool (see [#77](../../issues/77)) ### Infrastructure * added CI tests for Python 3.12 diff --git a/dicom_validator/__init__.py b/dicom_validator/__init__.py index 9aea0d2..d0b2d05 100644 --- a/dicom_validator/__init__.py +++ b/dicom_validator/__init__.py @@ -1 +1 @@ -__version__ = "0.5.dev0" +__version__ = "0.6.dev0"