diff --git a/CHANGELOG.md b/CHANGELOG.md index c0418125..a401e9be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ While the project is still on major version 0, breaking changes may be introduce +## [0.25.2](https://github.com/unioslo/harborapi/tree/harborapi-v0.25.2) - 2024-06-26 + +### Changed + +- All Pydantic models now use `default=` kwarg for default values. This prevents certain type checking errors when the model is instantiated without specifying the field. + ## [0.25.1](https://github.com/unioslo/harborapi/tree/harborapi-v0.25.1) - 2024-06-18 ## Added diff --git a/harborapi/__about__.py b/harborapi/__about__.py index 6d683430..3bf4ae59 100644 --- a/harborapi/__about__.py +++ b/harborapi/__about__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.25.1" +__version__ = "0.25.2"