From e3e68f5397c0c1d5e355002030b7a0bbd5ca2b7a Mon Sep 17 00:00:00 2001 From: shiyu Date: Mon, 10 Nov 2025 11:02:45 +0800 Subject: [PATCH] chore: update version to v1.3.7 --- services/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/config.py b/services/config.py index d57e481..b5f1cca 100644 --- a/services/config.py +++ b/services/config.py @@ -4,7 +4,7 @@ from typing import Any, Optional, Dict from dotenv import load_dotenv from models.database import Configuration load_dotenv(dotenv_path=".env") -VERSION = "v1.3.6" +VERSION = "v1.3.7" class ConfigCenter: _cache: Dict[str, Any] = {}