Skip to content

Commit

Permalink
chore(build): fix rendering of changelog to make it even more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed May 5, 2024
1 parent 813e3c4 commit d50786c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ def comput_version_increment_from(commits: Iterable[Commit]) -> Tuple[VersionInc
patch_changes += 1
log(f" + **patch** change: `fix` found in description")
dev_changes += 1
log(f" + `dev` change: commit is described as `{description}`")
log(f" + **dev** change: commit is described as `{description}`")
increment = version_increment(major_changes, minor_changes, patch_changes, dev_changes)
log(f"\nTotal commits: {dev_changes}, of which:")
log(f"- {major_changes} major changes")
log(f"- {minor_changes} minor changes")
log(f"- {patch_changes} patch changes")
log(f"- {patch_changes} patch changes\n")
return increment, dev_changes


Expand Down

0 comments on commit d50786c

Please sign in to comment.