Skip to content

Commit

Permalink
precise contribute
Browse files Browse the repository at this point in the history
  • Loading branch information
c0fec0de committed Oct 11, 2023
1 parent e6b8665 commit 8f39693
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion CONTRIBUTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
* `2.x.x` main line for 2.x.x
* `3.x.x` actual main line
* documentation links refer to `3.x.x`
* 2.x.x can be merged to 3.x.x
* `main`
* documentation links refer to `latest`
* 3.x.x can be merged to main
* `stable` main line for 2.x.x with release tags

## Testing

Expand Down Expand Up @@ -39,7 +42,19 @@ tox
### Release

```bash
git pull
# Update 3.x.x
git checkout 3.x.x
git pull origin 2.x.x
git push origin 3.x.x

# Update main
git checkout main
git pull origin 3.x.x
git push origin main

# Update release branch - currently 2.x.x
git checkout stable
git pull origin 2.x.x

prev_version=$(poetry version -s)

Expand Down

0 comments on commit 8f39693

Please sign in to comment.