aboutsummaryrefslogtreecommitdiffstats
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks.py b/tasks.py
index 27eed304..5db7a617 100644
--- a/tasks.py
+++ b/tasks.py
@@ -39,9 +39,9 @@ def release(version):
# This checks for changes in the repo.
invoke.run("git diff-index --quiet HEAD")
- update_version("cryptography/__about__.py", "__version__")
- update_version("docs/conf.py", "version")
- update_version("docs/conf.py", "release")
+ update_version("cryptography/__about__.py", "__version__", version)
+ update_version("docs/conf.py", "version", version)
+ update_version("docs/conf.py", "release", version)
invoke.run("git commit -am 'Bump version numbers for release.'")
invoke.run("git push")