summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2010-09-16 13:54:25 +0200
committerStefan van der Walt <stefan@sun.ac.za>2010-09-16 13:54:25 +0200
commit9c6c71dfa439a336315e98280bc12872d2caba85 (patch)
tree7493ca7ad6a1297a05a78110737063506905366c /doc
parent0f49fa545c4166937491b52400cfc3da886f7475 (diff)
downloadnumpy-9c6c71dfa439a336315e98280bc12872d2caba85.tar.gz
DOC: Refer to git repo in release notes.
Diffstat (limited to 'doc')
-rw-r--r--doc/HOWTO_RELEASE.txt25
1 files changed, 13 insertions, 12 deletions
diff --git a/doc/HOWTO_RELEASE.txt b/doc/HOWTO_RELEASE.txt
index 052dbf543..62b08af00 100644
--- a/doc/HOWTO_RELEASE.txt
+++ b/doc/HOWTO_RELEASE.txt
@@ -105,7 +105,7 @@ needs to be installed:
* MinGW
* ATLAS, 3x ([No SSE, SSE2, SSE3] for superpack installer) : ATLAS does not
compile under wine or on Windows out of the box. Binaries for ATLAS can be
- found in svn under vendor/.
+ found in the vendor repository on GitHub (http://github.com/numpy/vendor).
To install Wine on OS X Snow Leopard the current options are to compile a
current unstable version ,`<http://wiki.winehq.org/MacOSX/Building>`_, or to use
@@ -229,25 +229,26 @@ following:
Also make sure that as soon as the branch is made, there is a new release notes
file in trunk for the next release.
-Create the release "tag"
-------------------------
+Update the release status and create a release "tag"
+----------------------------------------------------
+Identify the commit hash of the release, e.g. 1b2e1d63ff.
+
+::
+ git co 1b2e1d63ff # gives warning about detached head
+
+Now, set ``release=True`` in setup.py, then
+
::
- svn cp http://svn.scipy.org/svn/numpy/trunk http://svn.scipy.org/svn/numpy/tags/<version>
+ git commit -m "REL: Release." setup.py
+ git tag <version>
+ git push origin <version>
Update the version of the trunk
-------------------------------
Increment the release number in setup.py. Release candidates should have "rc1"
(or "rc2", "rcN") appended to the X.Y.Z format.
-Update the version of the tag
------------------------------
-Switch to the tag::
-
- svn switch http://svn.scipy.org/svn/numpy/tags/<version>
-
-Set ``release=True`` in setup.py.
-
Make the release
----------------
The tar-files and binary releases for distribution should be uploaded to SourceForge,