diff --git a/CHANGELOG.md b/CHANGELOG.md index f393d146..70a47ecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [0.6.0] - 2024-12-02 + +### General + +- Added CLI command `odm-validate` +- Fixed documentation generation +- Fixed issue where empty values triggered rules "less-than-min-length" and + "invalid_category" +- Fixed json serialization of summarized report +- Fixed misc bugs and errors + +### API + +- Added verbosity parameter to `_validate_data_ext` + +### Validation schemas + +- Added `anyof` with `empty` for fields with `allowed` or `minlength` +- Fixed boolean-set values + +#### v2.0.0 + +- Removed tables: + - languages + - parts + - sets + - translations + ## [0.5.0] - 2024-01-03 ### General diff --git a/pyproject.toml b/pyproject.toml index c21dd874..bd7dfe3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "odm_validation" -version = "0.5.0" +version = "0.6.0" authors = [ { name="OHRI", email="PHES-ODM@ohri.ca" } ]