chore: update version to 0.11.0 across all relevant files (#10278)

This commit is contained in:
-LAN-
2024-11-05 17:53:56 +08:00
committed by GitHub
parent 7962101e5e
commit 7f583ec1ac
5 changed files with 9 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ class PackagingInfo(BaseSettings):
CURRENT_VERSION: str = Field(
description="Dify version",
default="0.10.2",
default="0.11.0",
)
COMMIT_SHA: str = Field(

View File

@@ -27,11 +27,7 @@ from .exc import (
logger = logging.getLogger(__name__)
current_dsl_version = "0.1.2"
dsl_to_dify_version_mapping: dict[str, str] = {
"0.1.2": "0.8.0",
"0.1.1": "0.6.0", # dsl version -> from dify version
}
current_dsl_version = "0.1.3"
class AppDslService: