Skip to content

Commit

Permalink
added bump2version
Browse files Browse the repository at this point in the history
  • Loading branch information
venthur authored and brianmay committed Sep 4, 2022
1 parent 9823353 commit 810b4a3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/sshuttle/version.py
/tmp/
/.cache/
/.eggs/
Expand Down
1 change: 1 addition & 0 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
19 changes: 12 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions sshuttle/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = version = '1.1.0'

0 comments on commit 810b4a3

Please sign in to comment.