diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-05 20:17:10 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-05 20:17:10 +0000 |
| commit | 212e73d64aae30bef2d6966860160a731dc2d9c3 (patch) | |
| tree | 99b5c248dbe0eb58da8598e5b7b239d8d1362255 | |
| parent | 0f9c5b3b9da95040dfe751b1824d9cb5d4cd1016 (diff) | |
Tweaks.
| -rwxr-xr-x | release | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,9 +34,9 @@ if os.popen('git status -s').read() != '': print '%s: uncommitted changes exist.' % sys.argv[0] sys.exit(1) -m = version.to_release +m = version.Version.to_release if args.beta: - m = Version.to_beta + m = version.Version.to_beta new_version = version.rewrite_wscript(m) version.append_to_changelog(new_version) @@ -55,9 +55,9 @@ check_diff_with_user() command("git commit -a -m \"Bump version\"") command("git tag -m \"v%s\" v%s" % (new_version, new_version)) -m = Version.bump_and_to_pre +m = version.Version.bump_and_to_pre if args.beta: - m = Version.to_pre + m = version.Version.to_pre version.rewrite_wscript(m) check_diff_with_user() |
