mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[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.
This commit is contained in:
parent
26d0f66a45
commit
f88b0064d3
11
MANIFEST
11
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
|
||||
|
4
README
4
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
|
||||
|
11
bin/release
11
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;
|
||||
|
@ -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,\
|
||||
|
Loading…
Reference in New Issue
Block a user