Set develop branch version to 1.17.0. (#4912)

This commit is contained in:
Larry Knox
2024-10-02 12:28:19 -05:00
committed by GitHub
parent 2921f276d8
commit 698ee8e439
9 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -231,7 +231,7 @@ import org.slf4j.LoggerFactory;
* which prints out the HDF5 error stack, as described in the HDF5 C API <i><b>@ref H5Eprint()</b>.</i> This
* may be used by Java exception handlers to print out the HDF5 error stack. <hr>
*
* @version HDF5 1.15.0 <BR>
* @version HDF5 1.17.0 <BR>
* <b>See also: </b>
* @ref HDFARRAY hdf.hdf5lib.HDFArray<br />
* @ref HDF5CONST hdf.hdf5lib.HDF5Constants<br />
@@ -273,7 +273,7 @@ public class H5 implements java.io.Serializable {
* </ul>
* Make sure to update the versions number when a different library is used.
*/
public final static int LIB_VERSION[] = {1, 15, 0};
public final static int LIB_VERSION[] = {1, 17, 0};
/**
* @ingroup JH5
+2 -2
View File
@@ -313,7 +313,7 @@ public class TestH5 {
@Test
public void testH5get_libversion()
{
int libversion[] = {1, 15, 0};
int libversion[] = {1, 17, 0};
try {
H5.H5get_libversion(libversion);
@@ -354,7 +354,7 @@ public class TestH5 {
@Test
public void testH5check_version()
{
int majnum = 1, minnum = 15, relnum = 0;
int majnum = 1, minnum = 17, relnum = 0;
try {
H5.H5check_version(majnum, minnum, relnum);