summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"