mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-25 01:13:37 +01:00
added bump2version
This commit is contained in:
parent
98233530a0
commit
810b4a3170
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
/sshuttle/version.py
|
|
||||||
/tmp/
|
/tmp/
|
||||||
/.cache/
|
/.cache/
|
||||||
/.eggs/
|
/.eggs/
|
||||||
|
@ -3,3 +3,4 @@ pytest==7.1.2
|
|||||||
pytest-cov==3.0.0
|
pytest-cov==3.0.0
|
||||||
flake8==5.0.4
|
flake8==5.0.4
|
||||||
pyflakes==2.5.0
|
pyflakes==2.5.0
|
||||||
|
bump2version==1.0.1
|
||||||
|
19
setup.cfg
19
setup.cfg
@ -1,18 +1,23 @@
|
|||||||
|
[bumpversion]
|
||||||
|
current_version = 1.1.0
|
||||||
|
|
||||||
|
[bumpversion:file:sshuttle/version.py]
|
||||||
|
|
||||||
[aliases]
|
[aliases]
|
||||||
test=pytest
|
test = pytest
|
||||||
|
|
||||||
[bdist_wheel]
|
[bdist_wheel]
|
||||||
universal = 1
|
universal = 1
|
||||||
|
|
||||||
[upload]
|
[upload]
|
||||||
sign=true
|
sign = true
|
||||||
identity=0x1784577F811F6EAC
|
identity = 0x1784577F811F6EAC
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
count=true
|
count = true
|
||||||
show-source=true
|
show-source = true
|
||||||
statistics=true
|
statistics = true
|
||||||
max-line-length=128
|
max-line-length = 128
|
||||||
|
|
||||||
[tool:pytest]
|
[tool:pytest]
|
||||||
addopts = --cov=sshuttle --cov-branch --cov-report=term-missing
|
addopts = --cov=sshuttle --cov-branch --cov-report=term-missing
|
||||||
|
1
sshuttle/version.py
Normal file
1
sshuttle/version.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
__version__ = version = '1.1.0'
|
Loading…
Reference in New Issue
Block a user