mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Set develop branch version to 1.17.0. (#4912)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user