Docs: Update version references to v0.25.2 in READMEs and docs (#14731)

### What problem does this PR solve?

- Update version tags in README files (including translations) from
v0.25.1 to v0.25.2
- Modify Docker image references and documentation to reflect new
version
- Update version badges and image descriptions
- Maintain consistency across all language variants of README files

### Type of change

- [x] Documentation Update
This commit is contained in:
Liu An
2026-05-09 19:06:05 +08:00
committed by GitHub
parent a3de873617
commit 57b24be6d6
31 changed files with 79 additions and 79 deletions

View File

@@ -55,7 +55,7 @@ def validate_version(version: str) -> bool:
def version_to_dirname(version: str) -> str:
"""Convert version string to valid directory name (e.g., 'v0.25.1' -> 'v0_25_1')"""
"""Convert version string to valid directory name (e.g., 'v0.25.2' -> 'v0_25_2')"""
return version.replace('.', '_')
@@ -839,19 +839,19 @@ def main():
epilog="""
Examples:
# List all migrations
python db_schema_sync.py --list --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.1
python db_schema_sync.py --list --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.2
# Create migration from model changes
python db_schema_sync.py --create --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.1
python db_schema_sync.py --create --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.2
# Create migration including dropped fields (destructive!)
python db_schema_sync.py --create --drop --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.1
python db_schema_sync.py --create --drop --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.2
# Run all pending migrations
python db_schema_sync.py --migrate --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.1
python db_schema_sync.py --migrate --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.2
# Show schema differences
python db_schema_sync.py --diff --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.1
python db_schema_sync.py --diff --host localhost --port 3306 --user root --password xxx --database rag_flow --version v0.25.2
"""
)
@@ -864,7 +864,7 @@ Examples:
# Version option
parser.add_argument('--version', '-v', type=str, required=True,
help='Version number in format vxx.xx.xx (e.g., v0.25.1)')
help='Version number in format vxx.xx.xx (e.g., v0.25.2)')
# Action options
parser.add_argument('--list', '-l', action='store_true', help='List all migrations')
@@ -882,7 +882,7 @@ Examples:
# Validate version format
if not validate_version(args.version):
logger.error(f"Invalid version format: {args.version}. Expected format: vxx.xx.xx (e.g., v0.25.1)")
logger.error(f"Invalid version format: {args.version}. Expected format: vxx.xx.xx (e.g., v0.25.2)")
sys.exit(1)
# Validate at least one action is specified