Author: kwright
Date: Fri Aug 22 19:21:34 2014
New Revision: 1619911
URL: http://svn.apache.org/r1619911
Log:
Change name of dev branches.
Modified:
manifoldcf/release-scripts/next_major_version.py
Modified: manifoldcf/release-scripts/next_major_version.py
URL:
http://svn.apache.org/viewvc/manifoldcf/release-scripts/next_major_version.py?rev=1619911&r1=1619910&r2=1619911&view=diff
==============================================================================
--- manifoldcf/release-scripts/next_major_version.py (original)
+++ manifoldcf/release-scripts/next_major_version.py Fri Aug 22 19:21:34 2014
@@ -426,7 +426,7 @@ def new_major_version(legacy_major_versi
# Point to all the right places
trunk_url = "https://svn.apache.org/repos/asf/manifoldcf/trunk"
- branch_url =
"https://svn.apache.org/repos/asf/manifoldcf/branches/branch_%sx" %
legacy_major_version
+ branch_url =
"https://svn.apache.org/repos/asf/manifoldcf/branches/dev_%sx" %
legacy_major_version
trunk_dir = "%s/trunk" % working_directory
trunk_changes_file = "%s/CHANGES.txt" % trunk_dir
@@ -434,8 +434,8 @@ def new_major_version(legacy_major_versi
new_trunk_version = "%s.0" % new_trunk_major_version
# Directly copy trunk to branch, with NO other changes
- print >>sys.stderr, "Creating %sx dev branch..." % legacy_major_version
- create_branch(trunk_url, branch_url, "Create a %sx dev branch." %
legacy_major_version)
+ print >>sys.stderr, "Creating dev_%sx branch..." % legacy_major_version
+ create_branch(trunk_url, branch_url, "Create a dev_%sx branch." %
legacy_major_version)
# Check out trunk.
print >>sys.stderr, "Checking out trunk..."