aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-01-06 15:16:49 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-01-06 15:16:49 -0800
commit7b8ef39ebe77b7686c34a2ffdef2c39e387760cb (patch)
tree29efcdb3e242400efe70f4119c1800bf12102fba
parent0e10f57d1b70ada1c4c0a6463d91dc0510a6b1d0 (diff)
downloadcryptography-7b8ef39ebe77b7686c34a2ffdef2c39e387760cb.tar.gz
cryptography-7b8ef39ebe77b7686c34a2ffdef2c39e387760cb.tar.bz2
cryptography-7b8ef39ebe77b7686c34a2ffdef2c39e387760cb.zip
Fix
-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")