From fa6af3d14879ccdad19af5b763bb78de96d77baf Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Fri, 17 Sep 2021 14:31:37 +0200 Subject: [PATCH] fix api doc (teams) (#2773) --- config/packages/nelmio_api_doc.yaml | 1 - src/Constants.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config/packages/nelmio_api_doc.yaml b/config/packages/nelmio_api_doc.yaml index 881318b6..883316db 100644 --- a/config/packages/nelmio_api_doc.yaml +++ b/config/packages/nelmio_api_doc.yaml @@ -35,7 +35,6 @@ nelmio_api_doc: - { alias: UserEntity, type: App\Entity\User, groups: [Default, Entity, User, User_Entity] } - { alias: UserCollection, type: App\Entity\User, groups: [Default, Collection, User] } - { alias: TeamEditForm, type: App\Form\API\TeamApiEditForm, groups: [Default, Entity, Team, Team_Entity] } - - { alias: TeamEntity, type: App\Entity\Team, groups: [Default, Entity, Team, Team_Entity] } - { alias: Team, type: App\Entity\Team, groups: [Default, Entity, Team, Team_Entity] } - { alias: TeamCollection, type: App\Entity\Team, groups: [Default, Collection, Team] } - { alias: TeamMember, type: App\Entity\TeamMember, groups: [Team_Entity] } diff --git a/src/Constants.php b/src/Constants.php index e7ff7de9..27831826 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -17,11 +17,11 @@ class Constants /** * The current release version */ - public const VERSION = '1.15'; + public const VERSION = '1.15.1'; /** * The current release: major * 10000 + minor * 100 + patch */ - public const VERSION_ID = 11500; + public const VERSION_ID = 11501; /** * The current release status, either "stable" or "dev" */