From 40041f2acbb6b701cce7a0be1a737b7a5e3c09a1 Mon Sep 17 00:00:00 2001 From: SaintShit Date: Thu, 9 Jan 2025 01:01:26 +0330 Subject: [PATCH] bump version to 0.8.2 --- app/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index d291e8a8..25e2b65b 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -10,7 +10,7 @@ from config import ALLOWED_ORIGINS, DOCS, XRAY_SUBSCRIPTION_PATH -__version__ = "0.8.1" +__version__ = "0.8.2" app = FastAPI( title="MarzbanAPI", @@ -32,7 +32,7 @@ allow_methods=["*"], allow_headers=["*"], ) -from app import dashboard, telegram, routers, jobs # noqa +from app import dashboard, jobs, routers, telegram # noqa from app.routers import api_router # noqa app.include_router(api_router)