diff options
-rw-r--r-- | MANIFEST | 11 | ||||
-rw-r--r-- | README | 4 | ||||
-rwxr-xr-x | bin/release | 11 | ||||
-rw-r--r-- | src/H5public.h | 2 |
4 files changed, 26 insertions, 2 deletions
@@ -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 @@ -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,\ |