Set version to 2.0.1 for continued development. (#5978)

This commit is contained in:
Larry Knox
2025-11-06 15:25:13 -06:00
committed by GitHub
parent f64c190237
commit 53b52f8593
9 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -256,7 +256,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 2.0.0 <BR>
* @version HDF5 2.0.1 <BR>
* <b>See also: </b>
* @ref HDFARRAY hdf.hdf5lib.HDFArray<br />
* @ref HDF5CONST hdf.hdf5lib.HDF5Constants<br />
@@ -298,7 +298,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[] = {2, 0, 0};
public final static int LIB_VERSION[] = {2, 0, 1};
private final static LinkedHashSet<Long> OPEN_IDS = new LinkedHashSet<Long>();
private static boolean isLibraryLoaded = false;
+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 2.0.0 <BR>
* @version HDF5 2.0.1 <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[] = {2, 0, 0};
public final static int LIB_VERSION[] = {2, 0, 1};
/**
* @ingroup JH5
+2 -2
View File
@@ -313,7 +313,7 @@ public class TestH5 {
@Test
public void testH5get_libversion()
{
int libversion[] = {2, 0, 0};
int libversion[] = {2, 0, 1};
try {
H5.H5get_libversion(libversion);
@@ -351,7 +351,7 @@ public class TestH5 {
@Test
public void testH5check_version()
{
int majnum = 2, minnum = 0, relnum = 0;
int majnum = 2, minnum = 0, relnum = 1;
try {
H5.H5check_version(majnum, minnum, relnum);
+2 -2
View File
@@ -313,7 +313,7 @@ public class TestH5 {
@Test
public void testH5get_libversion()
{
int libversion[] = {2, 0, 0};
int libversion[] = {2, 0, 1};
try {
H5.H5get_libversion(libversion);
@@ -351,7 +351,7 @@ public class TestH5 {
@Test
public void testH5check_version()
{
int majnum = 2, minnum = 0, relnum = 0;
int majnum = 2, minnum = 0, relnum = 1;
try {
H5.H5check_version(majnum, minnum, relnum);