summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2023-10-30 17:45:31 (GMT)
committerGitHub <noreply@github.com>2023-10-30 17:45:31 (GMT)
commit71d8975b54310631bf8354e8a2e6751c03e4b2ba (patch)
treef487b2ac05f90aff67632425191e69fb05f50581 /java
parent12d0a5d787c55758c1cb89233afc6e85ef0f8775 (diff)
downloadhdf5-71d8975b54310631bf8354e8a2e6751c03e4b2ba.zip
hdf5-71d8975b54310631bf8354e8a2e6751c03e4b2ba.tar.gz
hdf5-71d8975b54310631bf8354e8a2e6751c03e4b2ba.tar.bz2
Update version to 1.14.4-1. (#3799)
Clean 1.14.3 entries from RELEASE.txt. Add hdf5-1.14.3-RELEASE.txt contents to HISTORY-1_14.txt.
Diffstat (limited to 'java')
-rw-r--r--java/src/hdf/hdf5lib/H5.java4
-rw-r--r--java/test/TestH5.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java
index 0fcdd83..60eca65 100644
--- a/java/src/hdf/hdf5lib/H5.java
+++ b/java/src/hdf/hdf5lib/H5.java
@@ -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.14.3 <BR>
+ * @version HDF5 1.14.4 <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, 14, 3};
+ public final static int LIB_VERSION[] = {1, 14, 4};
/**
* @ingroup JH5
diff --git a/java/test/TestH5.java b/java/test/TestH5.java
index e178b66..fd1a926 100644
--- a/java/test/TestH5.java
+++ b/java/test/TestH5.java
@@ -313,7 +313,7 @@ public class TestH5 {
@Test
public void testH5get_libversion()
{
- int libversion[] = {1, 14, 3};
+ int libversion[] = {1, 14, 4};
try {
H5.H5get_libversion(libversion);
@@ -354,7 +354,7 @@ public class TestH5 {
@Test
public void testH5check_version()
{
- int majnum = 1, minnum = 14, relnum = 3;
+ int majnum = 1, minnum = 14, relnum = 4;
try {
H5.H5check_version(majnum, minnum, relnum);