Skip to content

Commit

Permalink
update releases decision tree (#429)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Rodriguez <crodveg@gmail.com>
  • Loading branch information
crodriguezvega and Carlos Rodriguez committed Sep 22, 2021
1 parent 37eac69 commit 46a1224
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,12 @@ The decision tree above was generated with the following code:
}
}%%
flowchart TD
A(Change):::c --> B{state-machine breaking?}
B:::c --> |Yes| C{API breaking?}
B:::c --> |No| D{API breaking?}
C:::c --> |Yes| E(Increase major version):::c
C:::c --> |No| F(Increase minor version):::c
D:::c --> |Yes| G(Increase major version):::c
A(Change):::c --> B{API breaking?}
B:::c --> |Yes| C(Increase major version):::c
B:::c --> |No| D{state-machine breaking?}
D:::c --> |Yes| G(Increase minor version):::c
D:::c --> |No| H(Increase patch version):::c
classDef c fill:#eee,stroke:#aaa
```

using [Mermaid's live editor](https://mermaid-js.github.io/).
using [Mermaid](https://mermaid-js.github.io)'s [live editor](https://mermaid.live).
Binary file modified releases-decision-tree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 46a1224

Please sign in to comment.