Skip to content

Commit 0f1ade5

Browse files
Copilotwzhipan
andcommitted
Add documentation for latest release branch
Co-authored-by: wzhipan <[email protected]>
1 parent 79b5c60 commit 0f1ade5

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

LATEST_RELEASE_BRANCH.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Latest Release Branch
2+
3+
The latest release branch is: **`working/release/23.1.0`**
4+
5+
## Release Branch Information
6+
7+
- **Branch Name**: `working/release/23.1.0`
8+
- **Corresponding Tag**: `v23.1.0`
9+
- **Branch Pattern**: `working/release/<VERSION>`
10+
11+
## How to Access
12+
13+
To checkout the latest release branch:
14+
```bash
15+
git fetch origin working/release/23.1.0
16+
git checkout working/release/23.1.0
17+
```
18+
19+
## Release History (Recent)
20+
21+
The repository maintains release branches following the pattern `working/release/<VERSION>`:
22+
23+
- `working/release/23.1.0` (latest)
24+
- `working/release/23.0.0`
25+
- `working/release/22.1.0`
26+
- `working/release/22.0.1`
27+
- `working/release/22.0.0`
28+
- `working/release/21.4.0`
29+
- `working/release/21.3.0`
30+
- `working/release/21.2.0`
31+
- `working/release/21.1.0`
32+
- `working/release/21.0.0`
33+
34+
## Verification
35+
36+
To verify the latest release branch yourself:
37+
```bash
38+
# List all release branches sorted by version
39+
git ls-remote --heads origin | grep "working/release/" | awk -F'/' '{print $NF}' | sort -V | tail -1
40+
```
41+
42+
This will output: `23.1.0`
43+
44+
## Tags
45+
46+
The release is also tagged as `v23.1.0`. To see all tags:
47+
```bash
48+
git tag --sort=-version:refname | head -20
49+
```

0 commit comments

Comments
 (0)