diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2016-05-02 10:43:24 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2016-05-02 10:43:24 +0200 |
commit | ce7b17aa7e482180d5eabc852060855775e08dac (patch) | |
tree | de560c1402b31e31a09c97628a82fcf00b39c234 /ACE/bin | |
parent | b9ab94b74529a926864c154675559fd6a1d8998b (diff) | |
download | ATCD-ce7b17aa7e482180d5eabc852060855775e08dac.tar.gz |
Make x.3.4 public and prepare for x.3.5
* ACE/NEWS:
* ACE/bin/diff-builds-and-group-fixed-tests-only.sh:
* ACE/bin/make_release.py:
* ACE/docs/Download.html:
* ACE/docs/bczar/bczar.html:
* ACE/etc/index.html:
* TAO/NEWS:
Diffstat (limited to 'ACE/bin')
-rwxr-xr-x | ACE/bin/diff-builds-and-group-fixed-tests-only.sh | 2 | ||||
-rwxr-xr-x | ACE/bin/make_release.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ACE/bin/diff-builds-and-group-fixed-tests-only.sh b/ACE/bin/diff-builds-and-group-fixed-tests-only.sh index a8da1bad48f..0edef1420a4 100755 --- a/ACE/bin/diff-builds-and-group-fixed-tests-only.sh +++ b/ACE/bin/diff-builds-and-group-fixed-tests-only.sh @@ -2,7 +2,7 @@ if test -z $1; then newdate=`date -u +%Y_%m_%d`; else newdate=$1; fi if test -z $2; then prefix=`date -u +%Y%m%d%a`; else prefix=$2; fi -if test -z $3; then olddate=2015_09_17; else olddate=$3; fi +if test -z $3; then olddate=2016_05_02; else olddate=$3; fi if test -z $ACE_ROOT; then ACE_ROOT=..; fi if test -z $TAO_ROOT; then TAO_ROOT=${ACE_ROOT}/TAO; fi if test -z $CIAO_ROOT; then CIAO_ROOT=${TAO_ROOT}/CIAO; fi diff --git a/ACE/bin/make_release.py b/ACE/bin/make_release.py index a660120608a..f487339197d 100755 --- a/ACE/bin/make_release.py +++ b/ACE/bin/make_release.py @@ -444,9 +444,9 @@ def create_changelog (component): global old_comp_versions, comp_versions, opts - old_tag = "ACE+TAO+CIAO-%d_%d_%d" % (old_comp_versions["ACE_major"], - old_comp_versions["ACE_minor"], - old_comp_versions["ACE_beta"]) + old_tag = "ACE+TAO-%d_%d_%d" % (old_comp_versions["ACE_major"], + old_comp_versions["ACE_minor"], + old_comp_versions["ACE_beta"]) # Generate changelogs per component ex ("cd $DOC_ROOT/ACE_TAO && git log " + old_tag + "..HEAD " + component + " > " + component + "/ChangeLogs/" + component + "-" + comp_versions[component + "_version_"]) |