Skip to content

Commit 8389703

Browse files
authored
Fix membership and bump version (#695)
1 parent 001b352 commit 8389703

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/core/memberships/endpoints_memberships.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636
async def read_associations_memberships(
3737
db: AsyncSession = Depends(get_db),
38-
user: models_users.CoreUser = Depends(is_user),
38+
user: models_users.CoreUser = Depends(is_user()),
3939
):
4040
"""
4141
Return all memberships from database as a list of dictionaries

app/core/utils/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class Settings(BaseSettings):
192192

193193
# Hyperion follows Semantic Versioning
194194
# https://semver.org/
195-
HYPERION_VERSION: str = "4.3.2"
195+
HYPERION_VERSION: str = "4.3.3"
196196
MINIMAL_TITAN_VERSION_CODE: int = 139
197197

198198
######################################

0 commit comments

Comments
 (0)