mirror of
https://github.com/langgenius/dify.git
synced 2026-04-20 10:47:21 +08:00
- Added new release branch "release/0.9.2" to GitHub workflow. - Updated the CURRENT_VERSION field in the packaging configuration. - Updated Docker images for api, worker, and web services to version 0.9.2. - Updated web application package.json version to 0.9.2.
19 lines
391 B
Python
19 lines
391 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class PackagingInfo(BaseSettings):
|
|
"""
|
|
Packaging build information
|
|
"""
|
|
|
|
CURRENT_VERSION: str = Field(
|
|
description="Dify version",
|
|
default="0.9.2",
|
|
)
|
|
|
|
COMMIT_SHA: str = Field(
|
|
description="SHA-1 checksum of the git commit used to build the app",
|
|
default="",
|
|
)
|