docs: added info about branches

This commit is contained in:
Observer KRypt0n_ 2023-03-19 16:50:21 +02:00
parent f0a7fdd583
commit 5df5ce462d
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -99,3 +99,32 @@ cargo run
```sh
cargo build --release
```
## Updates strategy
Starting from 3.2.1 ([fcab428](https://github.com/an-anime-team/an-anime-game-launcher/commit/fcab428cb40b1457f41e0856f9d1e1473acbe653)) we have 2 branches: stable ([main](https://github.com/an-anime-team/an-anime-game-launcher/tree/main)) and dev ([next](https://github.com/an-anime-team/an-anime-game-launcher/tree/next)). Code changes will be pushed into dev branch and merged into stable once they're ready for new version release
```
main: next: pull request:
┌─────┐
│3.2.1├───────────┬─────────────────┐
└──┬──┘ │ │
│ │ │
│ ┌─────▼────┐ │ *checkout from both
│ │ fix: ... ├─ ── ── ── ─┤ branches accepted
│ └─────┬────┘ │
│ │ ┌────▼────┐
│ │ │feat: ...│
│ ┌─────▼────┐ └────┬────┘
│ │feat: ... │ │
│ └─────┬────┘ │
│ │ │
│ ┌─────▼────┐ │
│ │merge: ...◄────────────┘
│ └─────┬────┘
│ │
┌──▼──┐ │
│3.2.2◄───────────┘
└─────┘
```