summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2023-05-19 16:30:12 (GMT)
committerGitHub <noreply@github.com>2023-05-19 16:30:12 (GMT)
commit722574e05c34297e27ea8ef13f7b55efe5fc2de0 (patch)
treeeccb9e3a2c19e8ca7c4a0ecf125ac1147bc63de5 /java
parentdd82e186ff1719303f07a1c11c08f0905eb6c177 (diff)
downloadhdf5-722574e05c34297e27ea8ef13f7b55efe5fc2de0.zip
hdf5-722574e05c34297e27ea8ef13f7b55efe5fc2de0.tar.gz
hdf5-722574e05c34297e27ea8ef13f7b55efe5fc2de0.tar.bz2
Update version (#2971)
* Update version Copy RELEASE.txt from 1.14.1-2 release into HISTORY-1_14.txt Clear out RELEASE.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 274dd5c..045ce67 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.1 <BR>
+ * @version HDF5 1.14.2 <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, 1};
+ public final static int LIB_VERSION[] = {1, 14, 2};
/**
* @ingroup JH5
diff --git a/java/test/TestH5.java b/java/test/TestH5.java
index 7333ad0..864a329 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, 1};
+ int libversion[] = {1, 14, 2};
try {
H5.H5get_libversion(libversion);
@@ -354,7 +354,7 @@ public class TestH5 {
@Test
public void testH5check_version()
{
- int majnum = 1, minnum = 14, relnum = 1;
+ int majnum = 1, minnum = 14, relnum = 2;
try {
H5.H5check_version(majnum, minnum, relnum);