|
From: <sv...@va...> - 2011-02-17 12:21:10
|
Author: sewardj
Date: 2011-02-17 12:20:59 +0000 (Thu, 17 Feb 2011)
New Revision: 11565
Log:
Record the repo-mangling magic invokations needed for a minor release.
Modified:
trunk/docs/internals/release-HOWTO.txt
Modified: trunk/docs/internals/release-HOWTO.txt
===================================================================
--- trunk/docs/internals/release-HOWTO.txt 2011-02-17 12:20:19 UTC (rev 11564)
+++ trunk/docs/internals/release-HOWTO.txt 2011-02-17 12:20:59 UTC (rev 11565)
@@ -130,7 +130,7 @@
external for VALGRIND_X_Y_Z to VEX_X_Y_Z.
If it's a X.Y.0 release, make "VALGRIND_X_Y_BRANCH" and "VEX_X_Y_BRANCH"
- branches too. Useful examples:
+ branches too. Useful examples (X.Y.0 major release):
cd valgrind
svn copy trunk tags/VALGRIND_3_3_0
@@ -148,6 +148,20 @@
svn propset svn:externals \
"VEX svn://svn.valgrind.org/vex/branches/VEX_3_3_BRANCH" .
+ (X.Y.Z minor release):
+
+ cd vex
+ svn copy branches/VEX_3_6_BRANCH tags/VEX_3_6_1
+
+ cd valgrind
+ svn copy branches/VALGRIND_3_6_BRANCH tags/VALGRIND_3_6_1
+
+ cd tags/VALGRIND_3_6_1
+ svn propset svn:externals \
+ "VEX svn://svn.valgrind.org/vex/tags/VEX_3_6_1" .
+
+
+
- Update website:
- Put the tarball up.
- Update the docs -- both the tarball'd docs, and the online-readable docs.
|