summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2022-09-06 08:16:24 +1000
committerBrian May <brian@linuxpenguins.xyz>2022-09-06 08:17:36 +1000
commita28c8ae10b8d4be847f1414119408f3e076aa8fe (patch)
tree16e99c8ca9df16ced3e3507ae7e42a66ba656146
parent4f4d6d9f4d83bdbe5f4123b52eb4fadcfba6c974 (diff)
Include version in setup.py too
-rw-r--r--setup.cfg2
-rwxr-xr-xsetup.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index f4abe55..f4be2cd 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,8 @@
[bumpversion]
current_version = 1.1.0
+[bumpversion:file:setup.py]
+
[bumpversion:file:sshuttle/version.py]
[aliases]
diff --git a/setup.py b/setup.py
index 00f683c..26c6a7c 100755
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ from setuptools import setup, find_packages
setup(
name="sshuttle",
- # version=version,
+ version='1.1.0',
url='https://github.com/sshuttle/sshuttle',
author='Brian May',
author_email='brian@linuxpenguins.xyz',