diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-12-05 18:41:27 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-12-05 18:41:27 (GMT) |
commit | e969226fc701d06fc3e6e4b312c6bd77395b76d3 (patch) | |
tree | 63994630aa42f337d0626b83b8a62739c624ac5d /src | |
parent | 8d344f96bcd012742c55e668d6a6b3d81d1c39ee (diff) | |
download | hdf5-e969226fc701d06fc3e6e4b312c6bd77395b76d3.zip hdf5-e969226fc701d06fc3e6e4b312c6bd77395b76d3.tar.gz hdf5-e969226fc701d06fc3e6e4b312c6bd77395b76d3.tar.bz2 |
[svn-r11761] Purpose:
Unstable format version marker.
Description:
This marks the Check in baseline for compact group revisions,
which radically revises the source code for managing groups and object headers.
Earlier versions (1.7.52 or earlier) have the original format. This version
and later have the unstable format until further notice.
Platforms tested:
h5committested.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5public.h | 4 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/H5public.h b/src/H5public.h index a20fcf8..c75a9c6 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -66,10 +66,10 @@ extern "C" { /* Version numbers */ #define H5_VERS_MAJOR 1 /* For major interface/format changes */ #define H5_VERS_MINOR 7 /* For minor interface/format changes */ -#define H5_VERS_RELEASE 52 /* For tweaks, bug-fixes, or development */ +#define H5_VERS_RELEASE 53 /* For tweaks, bug-fixes, or development */ #define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */ /* Empty string for real releases. */ -#define H5_VERS_INFO "HDF5 library version: 1.7.52" /* Full version string */ +#define H5_VERS_INFO "HDF5 library version: 1.7.53" /* Full version string */ #define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \ H5_VERS_RELEASE) diff --git a/src/Makefile.in b/src/Makefile.in index c6d7a85..1baee33 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -377,7 +377,7 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. LT_VERS_INTERFACE = 3 -LT_VERS_REVISION = 1 +LT_VERS_REVISION = 2 LT_VERS_AGE = 2 H5detect_CFLAGS = -g |