Last active
July 20, 2017 14:28
-
-
Save SirEdvin/89411dd446c2da4e455b51f3be33f8e7 to your computer and use it in GitHub Desktop.
Bumpversion example configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[bumpversion] | |
current_version = 0.1.0 | |
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre>[a-z]+)\.(?P<prenum>\d+))? | |
serialize = | |
{major}.{minor}.{patch}-{pre}.{prenum} | |
{major}.{minor}.{patch} | |
[bumpversion:file:test.txt] | |
[bumpversion:part:pre] | |
optional_value = placeholder | |
first_value = beta | |
values = | |
placeholder | |
beta | |
rc | |
placeholder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment