From: <md...@us...> - 2010-07-06 15:31:35
|
Revision: 8518 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8518&view=rev Author: mdboom Date: 2010-07-06 15:31:29 +0000 (Tue, 06 Jul 2010) Log Message: ----------- Merged revisions 8514,8517 via svnmerge from https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint ........ r8514 | jdh2358 | 2010-07-06 10:48:31 -0400 (Tue, 06 Jul 2010) | 1 line update coding guide to point to 1.0 release branch ........ r8517 | mdboom | 2010-07-06 11:30:34 -0400 (Tue, 06 Jul 2010) | 1 line Testing merging ........ Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/doc/devel/coding_guide.rst Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8512 /trunk/matplotlib:1-7315 + /branches/mathtex:1-7263 /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 /branches/v1_0_maint:1-8517 /trunk/matplotlib:1-7315 Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2010-07-06 15:30:34 UTC (rev 8517) +++ trunk/matplotlib/CHANGELOG 2010-07-06 15:31:29 UTC (rev 8518) @@ -1,3 +1,5 @@ +2010-07-06 Testing merging + 2010-07-06 Tagging for mpl 1.0 at r8502 Modified: trunk/matplotlib/doc/devel/coding_guide.rst =================================================================== --- trunk/matplotlib/doc/devel/coding_guide.rst 2010-07-06 15:30:34 UTC (rev 8517) +++ trunk/matplotlib/doc/devel/coding_guide.rst 2010-07-06 15:31:29 UTC (rev 8518) @@ -24,17 +24,13 @@ svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/trunk/\ matplotlib mpl --username=youruser --password=yourpass -Branch checkouts, eg the maintenance branch:: +Branch checkouts, eg the 1.0.x maintenance branch:: svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\ - v0_99_maint mpl99 --username=youruser --password=yourpass + v1_0_maint mpl1 --username=youruser --password=yourpass -The current release of the trunk is in the 0.99.x maintenance branch:: - svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\ - v0_99_maint mpl99 --username=youruser --password=yourpass - Committing changes ------------------ @@ -96,7 +92,7 @@ svnmerge.py merge -S BRANCHNAME Where BRANCHNAME is the name of the branch to merge *from*, - e.g. v0_99_maint. + e.g. v1_0_maint. If you wish to merge only specific revisions (in an unusual situation), do:: @@ -130,17 +126,17 @@ with this. * Creating a new branch from the trunk (if the release version is - 0.99 at revision 6573):: + 1.0 at revision 8503):: > svn copy \ - https://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib@7315 \ - https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_99_maint \ - -m "Creating maintenance branch for 0.99" + https://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib@8503 \ + https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v1_0_maint \ + -m "Creating maintenance branch for 1.0" * You can add a new branch for the trunk to "track" using "svnmerge.py init", e.g., from a working copy of the trunk:: - > svnmerge.py init https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_99_maint + > svnmerge.py init https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v1_0_maint property 'svnmerge-integrated' set on '.' After doing a "svn commit" on this, this merge tracking is available @@ -150,7 +146,7 @@ * Tracking can later be removed with the "svnmerge.py uninit" command, e.g.:: - > svnmerge.py -S v0_99_maint uninit + > svnmerge.py -S v1_0_maint uninit .. _using-git: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |