diff --git a/doc/changelog.rst b/doc/changelog.rst index e93cd15..f59ef76 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -[0.1.15] - Unreleased +[0.1.15] - 2024-08-18 --------------------- Added @@ -14,7 +14,7 @@ Fixed Changed ^^^^^^^ -- Removed :class:`~scim2_models.ListResponse` ``of`` method in favor of regular type parameters. +- Remove :class:`~scim2_models.ListResponse` ``of`` method in favor of regular type parameters. .. note:: ``ListResponse.of(User)`` becomes ``ListResponse[User]`` and ListResponse.of(User, Group)`` becomes ``ListResponse[Union[User, Group]]``. diff --git a/pyproject.toml b/pyproject.toml index 72aaec0..5c8e276 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "scim2-models" -version = "0.1.14" +version = "0.1.15" description = "SCIM2 models serialization and validation with pydantic" authors = ["Yaal Coop "] license = "Apache"