From ee55da10dbbdbff37c00623da77d1fe068f27057 Mon Sep 17 00:00:00 2001 From: Mohammad Date: Sun, 5 Jan 2025 17:57:07 +0330 Subject: [PATCH] bump version to 0.8.1 --- app/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index 7f3c3275..d291e8a8 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.0" +__version__ = "0.8.1" app = FastAPI( title="MarzbanAPI", @@ -32,8 +32,7 @@ allow_methods=["*"], allow_headers=["*"], ) - -from app import dashboard, jobs, routers, telegram # noqa +from app import dashboard, telegram, routers, jobs # noqa from app.routers import api_router # noqa app.include_router(api_router)