Add bump2version (to avoid mistakes like pushing wrong tag names)

This commit is contained in:
Mads Marquart
2019-07-04 00:22:24 +02:00
parent 27e5d1baae
commit 19b4d929e2
2 changed files with 11 additions and 0 deletions

7
.bumpversion.cfg Normal file
View File

@@ -0,0 +1,7 @@
[bumpversion]
current_version = 1.7.1
commit = True
tag = True
[bumpversion:file:fbchat/__init__.py]

View File

@@ -60,3 +60,7 @@ docs = [
lint = [ lint = [
"black", "black",
] ]
tools = [
# Fork of bumpversion, see https://github.com/c4urself/bump2version
"bump2version~=0.5.0",
]