From 7b8ef39ebe77b7686c34a2ffdef2c39e387760cb Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 6 Jan 2014 15:16:49 -0800 Subject: Fix --- tasks.py | 6 +++--- 1 file 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") -- cgit v1.2.3