Update version info to v0.22.1 (#11346)

### What problem does this PR solve?

As title

### Type of change

- [x] Other (please describe): Update version info

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2025-11-19 09:50:23 +08:00
committed by GitHub
parent 023f509501
commit 1cb6b7f5dd
22 changed files with 44 additions and 44 deletions

View File

@ -48,16 +48,16 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
git clone https://github.com/infiniflow/ragflow.git
```
2. Switch to the latest, officially published release, e.g., `v0.22.0`:
2. Switch to the latest, officially published release, e.g., `v0.22.1`:
```bash
git checkout -f v0.22.0
git checkout -f v0.22.1
```
3. Update **ragflow/docker/.env**:
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.22.0
RAGFLOW_IMAGE=infiniflow/ragflow:v0.22.1
```
4. Update the RAGFlow image and restart RAGFlow:
@ -78,10 +78,10 @@ No, you do not need to. Upgrading RAGFlow in itself will *not* remove your uploa
1. From an environment with Internet access, pull the required Docker image.
2. Save the Docker image to a **.tar** file.
```bash
docker save -o ragflow.v0.22.0.tar infiniflow/ragflow:v0.22.0
docker save -o ragflow.v0.22.1.tar infiniflow/ragflow:v0.22.1
```
3. Copy the **.tar** file to the target server.
4. Load the **.tar** file into Docker:
```bash
docker load -i ragflow.v0.22.0.tar
docker load -i ragflow.v0.22.1.tar
```