added bump2version

This commit is contained in:
Bastian Venthur 2022-08-29 11:30:59 +02:00 committed by Brian May
parent 98233530a0
commit 810b4a3170
4 changed files with 14 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
/sshuttle/version.py
/tmp/
/.cache/
/.eggs/

View File

@ -3,3 +3,4 @@ pytest==7.1.2
pytest-cov==3.0.0
flake8==5.0.4
pyflakes==2.5.0
bump2version==1.0.1

View File

@ -1,18 +1,23 @@
[bumpversion]
current_version = 1.1.0
[bumpversion:file:sshuttle/version.py]
[aliases]
test=pytest
test = pytest
[bdist_wheel]
universal = 1
[upload]
sign=true
identity=0x1784577F811F6EAC
sign = true
identity = 0x1784577F811F6EAC
[flake8]
count=true
show-source=true
statistics=true
max-line-length=128
count = true
show-source = true
statistics = true
max-line-length = 128
[tool:pytest]
addopts = --cov=sshuttle --cov-branch --cov-report=term-missing

1
sshuttle/version.py Normal file
View File

@ -0,0 +1 @@
__version__ = version = '1.1.0'