From f88b0064d359c746cddc05158476ea86eaefc152 Mon Sep 17 00:00:00 2001 From: Robb Matzke Date: Fri, 10 Jul 1998 10:12:34 -0500 Subject: [svn-r478] Changes since 19980709 ---------------------- ./README ./bin/release The first line of the README file is updated automatically by the `release' script to associate a date with a release number. For example: This is hdf5-1.0.9a released on 1998-06-09 18:00 UTC Please refer to the INSTALL file for installation instructions. ./src/H5public.h Release number incremented. This happens automatically now if you run the `release' script in `-batch' mode. I'll stop documenting changes to this file unless they're something other than a release number change. ./MANIFEST Added Elena's new files. --- MANIFEST | 11 +++++++++++ README | 4 +++- bin/release | 11 +++++++++++ src/H5public.h | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/MANIFEST b/MANIFEST index d10c356..4d5fd96 100644 --- a/MANIFEST +++ b/MANIFEST @@ -108,6 +108,17 @@ ./doc/html/tracing.html ./doc/html/version.gif ./doc/html/version.obj +./doc/src/Glossary.html +./doc/src/RM_H5A.html +./doc/src/RM_H5D.html +./doc/src/RM_H5E.html +./doc/src/RM_H5F.html +./doc/src/RM_H5Front.html +./doc/src/RM_H5G.html +./doc/src/RM_H5P.html +./doc/src/RM_H5S.html +./doc/src/RM_H5T.html +./doc/src/RM_H5Z.html ./doc/tgif/APIGrammar.obj ./doc/tgif/FileGrammar.obj ./doc/tgif/IOPipe.obj diff --git a/README b/README index c30f5a0..f605f03 100644 --- a/README +++ b/README @@ -1,4 +1,6 @@ -This is the hdf5-1.0.0a alpha release of the HDF5 library. +This is hdf5-1.0.9a released on 1998-06-10 15:10 UTC +Please refer to the INSTALL file for installation instructions. +------------------------------------------------------------------------------ This release is almost fully functional for the entire API defined in the documentation, see the RELEASE file in this directory for information diff --git a/bin/release b/bin/release index ef79faf..6a6af59 100755 --- a/bin/release +++ b/bin/release @@ -140,6 +140,17 @@ sub release (@) { (setver ($ver=$_) or die "cannot set version") if /\S/; } + # Update the README file to contain the new version and date + # information. + my $today = sprintf "19%02d-%02d-%02d %02d:%02d UTC", (gmtime)[5,4,3,2,1]; + $_ = `cat README`; + s[^(This is hdf5-)\d+.\d+.\d+[a-z]( released on )(\d+-?){3} \d+:\d+ UTC] + [$1$ver$2$today]s; + system ("cp -p README README~"); + open README, ">README" or die "unable to open README: $!\n"; + print README; + close README; + # Move default top-level makefile into place. $status = system "cp Makefile.dist Makefile"; die "cannot install default Makefile" if $status >> 8; diff --git a/src/H5public.h b/src/H5public.h index 16f007e..d14b3e0 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -27,7 +27,7 @@ /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface changes */ #define H5_VERS_MINOR 0 /* For minor interface changes */ -#define H5_VERS_RELEASE 8 /* For interface tweaks & bug-fixes */ +#define H5_VERS_RELEASE 9 /* For interface tweaks & bug-fixes */ #define H5_VERS_PATCH 0 /* For small groups of bug fixes */ #define H5check() H5vers_check(H5_VERS_MAJOR,H5_VERS_MINOR,\ -- cgit v0.12