diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-20 16:05:43 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-20 16:05:43 (GMT) |
commit | 1dbacc8377754e33e8088ad6c7895a5f68bf7dfb (patch) | |
tree | fcf26adf4ac525bd2fe2d519c084f9accb78bfe0 /src/H5public.h | |
parent | 29bf0662db641fde339ff9237bd1277509a047f1 (diff) | |
download | hdf5-1dbacc8377754e33e8088ad6c7895a5f68bf7dfb.zip hdf5-1dbacc8377754e33e8088ad6c7895a5f68bf7dfb.tar.gz hdf5-1dbacc8377754e33e8088ad6c7895a5f68bf7dfb.tar.bz2 |
[svn-r517] Changes since 19980720
----------------------
./bin/release
The archive names have only three parts to a version number.
Instead of `hdf5-1.2.3d.tar.gz' they will be named like
`hdf5-1.2.3.tar.gz'.
./src/H5public.h
./src/H5.c
Dropped the patch level from the version number. The version
number is now a major number, a minor number, and a release
number.
./doc/html/Version.html
Updated to get rid of patch numbers.
./tools/h5repart.c
Added a `-V' flag like for `h5ls' that prints the version number.
Diffstat (limited to 'src/H5public.h')
-rw-r--r-- | src/H5public.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/H5public.h b/src/H5public.h index eb78630..3caf7cf 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -25,13 +25,12 @@ #endif /* Version numbers */ -#define H5_VERS_MAJOR 1 /* For major interface changes */ -#define H5_VERS_MINOR 0 /* For minor interface changes */ -#define H5_VERS_RELEASE 24 /* For interface tweaks & bug-fixes */ -#define H5_VERS_PATCH 0 /* For small groups of bug fixes */ +#define H5_VERS_MAJOR 1 /* For major interface/format changes */ +#define H5_VERS_MINOR 0 /* For minor interface/format changes */ +#define H5_VERS_RELEASE 24 /* For tweaks, bug-fixes, or development */ -#define H5check() H5vers_check(H5_VERS_MAJOR,H5_VERS_MINOR,\ - H5_VERS_RELEASE, H5_VERS_PATCH) +#define H5check() H5vers_check(H5_VERS_MAJOR,H5_VERS_MINOR, \ + H5_VERS_RELEASE) /* * Status return values. Failed integer functions in HDF5 result almost @@ -83,10 +82,8 @@ extern "C" { herr_t H5open (void); herr_t H5close (void); herr_t H5dont_atexit (void); -herr_t H5version (unsigned *majnum, unsigned *minnum, unsigned *relnum, - unsigned *patnum); -herr_t H5vers_check (unsigned majnum, unsigned minnum, unsigned relnum, - unsigned patnum); +herr_t H5version (unsigned *majnum, unsigned *minnum, unsigned *relnum); +herr_t H5vers_check (unsigned majnum, unsigned minnum, unsigned relnum); #ifdef __cplusplus } |