diff --git a/app.yml b/app.yml index c54b580..3eb5c7a 100644 --- a/app.yml +++ b/app.yml @@ -1,7 +1,7 @@ id: microsoft-365-service name: Microsoft 365 Service language: python -version: 1.0.0 +version: 1.0.1 base_path: /apps/microsoft-365-service port: 8000 status: development diff --git a/app/config.py b/app/config.py index f09e3b5..89f0c3d 100644 --- a/app/config.py +++ b/app/config.py @@ -5,7 +5,7 @@ from dataclasses import dataclass @dataclass(frozen=True) class Settings: app_name: str = os.getenv("APP_NAME", "Microsoft 365 Service") - app_version: str = os.getenv("APP_VERSION", "1.0.0") + app_version: str = os.getenv("APP_VERSION", "1.0.1") root_path: str = os.getenv("ROOT_PATH", "") tenant_id: str = os.getenv("MS365_TENANT_ID", "") client_id: str = os.getenv("MS365_CLIENT_ID", "")