chore: bump version
continuous-integration/drone/push Build is failing Details

backups-unlock
Inex Code 2023-08-04 12:57:31 +03:00
parent e6189e4e73
commit ff70a3588e
3 changed files with 5 additions and 5 deletions

View File

@ -27,4 +27,4 @@ async def get_token_header(
def get_api_version() -> str:
"""Get API version"""
return "2.2.1"
return "2.3.0"

View File

@ -159,8 +159,8 @@ class BackupMutations:
@strawberry.mutation(permission_classes=[IsAuthenticated])
def forget_snapshot(self, snapshot_id: str) -> GenericMutationReturn:
"""Forget a snapshot.
Makes it inaccessible from the server.
"""Forget a snapshot.
Makes it inaccessible from the server.
After some time, the data (encrypted) will not be recoverable
from the backup server too, but not immediately"""
@ -171,7 +171,7 @@ class BackupMutations:
code=404,
message=f"snapshot {snapshot_id} not found",
)
try:
Backups.forget_snapshot(snap)
return GenericMutationReturn(

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="selfprivacy_api",
version="2.2.1",
version="2.3.0",
packages=find_packages(),
scripts=[
"selfprivacy_api/app.py",