From ded923760791dacc64cd2e5572a61263b67407ae Mon Sep 17 00:00:00 2001 From: Ryan Tomac Date: Fri, 1 Jun 2012 09:43:49 -0700 Subject: [PATCH] Add note in docs on tagging release --- BUILD.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/BUILD.rst b/BUILD.rst index 500dc2c5e..545beb6d3 100644 --- a/BUILD.rst +++ b/BUILD.rst @@ -113,6 +113,7 @@ After building and releasing to PyPI: - Upload dist packages to the `downloads section on GitHub`_ (all dist packages except the eggs) - Publish the keyword documentation (see `Pushing Keyword Documentation`_) +- Tag the release (see `Tagging a Release`_) Note: To publish a release, you will need to: @@ -120,6 +121,20 @@ Note: To publish a release, you will need to: - Setup your `.pypirc file`_ (goes in the root of your home directory) +Tagging a Release +----------------- + +It's our policy to tag each release. To do so, run:: + + git tag -a v -m " release" + git push --tags + +E.g.:: + + git tag -a v1.0.0 -m "1.0.0 release" + git push --tags + + Pushing Keyword Documentation -----------------------------