summaryrefslogtreecommitdiffstats
path: root/bin/snapshot
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-06-16 15:09:56 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-06-16 15:09:56 (GMT)
commit06c7d8fbbf7f5d1dedc2f0ea0cb75a37e5677527 (patch)
treeb5860bdfdf8d4f51c7a21fbc315dcfa9d3dd26aa /bin/snapshot
parentb5690a0af32b3a15c00b4b904a6759710553be80 (diff)
downloadhdf5-06c7d8fbbf7f5d1dedc2f0ea0cb75a37e5677527.zip
hdf5-06c7d8fbbf7f5d1dedc2f0ea0cb75a37e5677527.tar.gz
hdf5-06c7d8fbbf7f5d1dedc2f0ea0cb75a37e5677527.tar.bz2
[svn-r1354]
Changes since 19990615 ---------------------- ./README Version number synchronized with library. ./bin/h5vers If the version number of the library is changed then the first line of the README file is also changed to something like This is hdf5-1.2.3 currently under development The `release' script (which also gets run by `snapshot') changes that line to include the release date but keeps the version number the same. The net effect is that the version numbers in README and H5public.h should now always stay synchronized. ./bin/snapshot The CVS checkin comment includes the version number for the snapshot that was just made. ./tools/testh5toh4 Changed `*-SKIP-*' to `-SKIP-' to be consistent with the other tests.
Diffstat (limited to 'bin/snapshot')
-rwxr-xr-xbin/snapshot4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot
index 105f9d2..680a44e 100755
--- a/bin/snapshot
+++ b/bin/snapshot
@@ -47,6 +47,7 @@ if [ -d ${COMPARE}/previous ]; then
snapshot=no
for src in `grep '^\.' ${COMPARE}/current/MANIFEST|expand|cut -f1 -d' '`; do
diff -I H5_VERS_RELEASE -I " released on " \
+ -I " currently under development" \
${COMPARE}/previous/$src ${COMPARE}/current/$src || \
snapshot=yes
# Don't break because we want to see all the diffs.
@@ -72,8 +73,9 @@ if [ "$snapshot" = "yes" ]; then
cd ${COMPARE}/current
cvs -Q tag hdf5-`perl -w bin/h5vers |tr . _`
bin/release -d $ARCHIVES $METHODS
+ RELEASE_VERSION="`perl -w bin/h5vers -v`"
perl -w bin/h5vers -i
- cvs -Q commit -m Snapshot
+ cvs -Q commit -m "Snapshot $RELEASE_VERSION"
)
fi