File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,12 @@ The decision tree above was generated with the following code:
31
31
}
32
32
}%%
33
33
flowchart TD
34
- A(Change):::c --> B{state-machine breaking?}
35
- B:::c --> |Yes| C{API breaking?}
36
- B:::c --> |No| D{API breaking?}
37
- C:::c --> |Yes| E(Increase major version):::c
38
- C:::c --> |No| F(Increase minor version):::c
39
- D:::c --> |Yes| G(Increase major version):::c
34
+ A(Change):::c --> B{API breaking?}
35
+ B:::c --> |Yes| C(Increase major version):::c
36
+ B:::c --> |No| D{state-machine breaking?}
37
+ D:::c --> |Yes| G(Increase minor version):::c
40
38
D:::c --> |No| H(Increase patch version):::c
41
39
classDef c fill:#eee,stroke:#aaa
42
40
```
43
41
44
- using [ Mermaid's live editor ] ( https://mermaid-js.github.io/ ) .
42
+ using [ Mermaid] ( https://mermaid-js.github.io ) 's [ live editor ] ( https://mermaid.live ) .
You can’t perform that action at this time.
0 commit comments