summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-07-03 04:17:58 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-07-03 04:17:58 (GMT)
commitc5b2fb2a87c7c2cfb5c45685faf670655bbe7d29 (patch)
tree657d4dd0cbd185ce578f56a74110cdab1db605de
parent0d1aef3852a52c5e20a00932ff3f791cec74935b (diff)
downloadhdf5-c5b2fb2a87c7c2cfb5c45685faf670655bbe7d29.zip
hdf5-c5b2fb2a87c7c2cfb5c45685faf670655bbe7d29.tar.gz
hdf5-c5b2fb2a87c7c2cfb5c45685faf670655bbe7d29.tar.bz2
[svn-r7146] Purpose:
update for release Description: Set the version information to 1.6.0-pre1 to get ready for v1.6 release. (Not sure why H5F.c got changed--probably done gmake automatically during testing.) Platforms tested: h5committested. Misc. update:
-rw-r--r--src/H5F.c2
-rw-r--r--src/H5public.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/H5F.c b/src/H5F.c
index cd3fc5b..8a473b7 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -963,7 +963,7 @@ H5Fget_obj_count(hid_t file_id, unsigned types)
int ret_value; /* Return value */
FUNC_ENTER_API(H5Fget_obj_count, FAIL);
- H5TRACE2("e","iIu",file_id,types);
+ H5TRACE2("Is","iIu",file_id,types);
if( file_id != H5F_OBJ_ALL && (NULL==(f=H5I_object_verify(file_id,H5I_FILE))) )
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "not a file id");
diff --git a/src/H5public.h b/src/H5public.h
index 2ebf466..65b8a28 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -74,11 +74,11 @@ extern "C" {
/* Version numbers */
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
-#define H5_VERS_MINOR 5 /* For minor interface/format changes */
-#define H5_VERS_RELEASE 63 /* For tweaks, bug-fixes, or development */
-#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
+#define H5_VERS_MINOR 6 /* For minor interface/format changes */
+#define H5_VERS_RELEASE 0 /* For tweaks, bug-fixes, or development */
+#define H5_VERS_SUBRELEASE "pre1" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.5.63" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.6.0-pre1" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)