Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commitizen-tools/commitizen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.41.0
Choose a base ref
...
head repository: commitizen-tools/commitizen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.42.0
Choose a head ref
  • 2 commits
  • 13 files changed
  • 2 contributors

Commits on Feb 11, 2023

  1. feat(bump): support prereleases with start offset

    In special cases, it may be necessary for prereleases not to start with a 0, because the individual characters are encoded in bytes. Here, a 0 in the byte is interpreted as a release version, consistent with the location of bugfixes. Therefore, this commit introduces a generic option to change the start of the prerelease to accommodate such circumstances.
    
    EXAMPLES
    
    Before:
    0.3.0 -> PATCH beta-> 0.3.1b0
    
    Now (with offset 0 == default)
    0.3.0 -> PATCH beta-> 0.3.1b0
    
    Now (with offset 1)
    0.3.0 -> PATCH beta-> 0.3.1b1
    ckagerer authored and Lee-W committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    583c7dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65988f1 View commit details
    Browse the repository at this point in the history
Loading