From 27266d8d3efdebb6f3e496e3b6cfa9e82cef3f08 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 27 Mar 2010 13:59:17 +0100 Subject: [PATCH] Add receipe on creating new releases --- docs/development/contributing.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/development/contributing.rst b/docs/development/contributing.rst index 8a096cd0..f53a971b 100644 --- a/docs/development/contributing.rst +++ b/docs/development/contributing.rst @@ -131,3 +131,23 @@ Then, to generate docs:: within 10 minutes after a documentation update is pushed to ``jodal/mopidy/master`` at GitHub. + +Creating releases +================= + +1. Update changelog and commit it. + +2. Tag release:: + + git tag -a -m "Release v0.1.0a0" v0.1.0a0 + +3. Push to GitHub:: + + git push + git push --tags + +4. Build package and upload to PyPI:: + + python setup.py sdist upload + +5. Spread the word.