Skip to content

v3.7.3

Latest

Choose a tag to compare

@jakewilliami jakewilliami released this 10 Aug 12:03

Fix incorrect minor patch continuation branch in tag tree! v3.7.3

Minor patches were sometimes branching to the next major patch, erroneously—for example, see below

v2.0.0
│   │   ┌── v1.1.1
│   ├── v1.1.0
v1.0.0
├── v0.1.0
v0.0.0

Only major patches should be branching to the next major patch. Specifically, we only want to show major continuation for non-newest minor groups in the tree. This was a simple logical error and fixed in a couple of lines.

New output:

v2.0.0
│   ┌── v1.1.1
│   ├── v1.1.0
v1.0.0
├── v0.1.0
v0.0.0

Full Changelog: v3.7.2...v3.7.3