summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-12-06 16:00:44 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-12-06 16:00:44 +0000
commit7d6b213ee93937cc9a56d8a984e7276bb34c307e (patch)
treefc903d4917b680c36a923061a3468d2097c6c60b
parent04b816639b9e9bff740d52af8a07bb8c78ae749e (diff)
downloadATCD-7d6b213ee93937cc9a56d8a984e7276bb34c307e.tar.gz
ChangeLogTag: Mon Dec 6 15:59:52 UTC 2010 Adam Mitz <mitza@ociweb.com>
-rw-r--r--ACE/ChangeLog8
-rwxr-xr-xACE/bin/make_release.py20
2 files changed, 17 insertions, 11 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 630e49784c3..9adf3f38a87 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,11 @@
+Mon Dec 6 15:59:52 UTC 2010 Adam Mitz <mitza@ociweb.com>
+
+ * bin/make_release.py:
+
+ Enabled the calls to update_latest_tag() now that the bug in that
+ functions has been fixed in:
+ Tue Sep 14 16:42:26 UTC 2010 Adam Mitz <mitza@ociweb.com>
+
Sat Dec 4 14:25:26 UTC 2010 Steve Huston <shuston@riverace.com>
* ace/ACE.cpp (timestamp):
diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py
index b0afde1ba5a..4c39e610775 100755
--- a/ACE/bin/make_release.py
+++ b/ACE/bin/make_release.py
@@ -614,17 +614,15 @@ def tag ():
opts.mpc_root + "/tags/" + branch)
# Update latest tag
- # mcorino@remedy.nl - subversion does not seem to support propset directly
- # on URLs (except for some strange reason through propedit)
- #if opts.release_type == "major":
- #update_latest_tag ("Major", branch)
- #elif opts.release_type == "minor":
- #update_latest_tag ("Minor", branch)
- #elif opts.release_type == "beta":
- #update_latest_tag ("Beta", branch)
- #update_latest_tag ("Micro", branch)
- #if comp_versions["ACE_beta"] == 1:
- #update_latest_tag ("BFO", branch)
+ if opts.release_type == "major":
+ update_latest_tag ("Major", branch)
+ elif opts.release_type == "minor":
+ update_latest_tag ("Minor", branch)
+ elif opts.release_type == "beta":
+ update_latest_tag ("Beta", branch)
+ update_latest_tag ("Micro", branch)
+ if comp_versions["ACE_beta"] == 1:
+ update_latest_tag ("BFO", branch)
else:
print "Creating tags:\n"
print opts.repo_root + "/trunk -> " + opts.repo_root + "/tags/" + branch + "\n"