From a75b21626fbf6e6418a8e7bf762a74fc42184220 Mon Sep 17 00:00:00 2001 From: pederhan Date: Wed, 26 Jun 2024 12:54:04 +0200 Subject: [PATCH] Bump version to 0.25.2 --- CHANGELOG.md | 6 ++++++ harborapi/__about__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"