diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2022-04-08 21:25:01 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2022-04-08 21:25:01 (GMT) |
commit | 1e34f1d3b53c27caae4adcafc281ab01741ea2c3 (patch) | |
tree | 337cd96b8cdbd0831123ddc165da6e861f5b7cba /java | |
parent | 69878f59c48e3226978e0430dcb729e5702bcbb0 (diff) | |
download | hdf5-1e34f1d3b53c27caae4adcafc281ab01741ea2c3.zip hdf5-1e34f1d3b53c27caae4adcafc281ab01741ea2c3.tar.gz hdf5-1e34f1d3b53c27caae4adcafc281ab01741ea2c3.tar.bz2 |
Update version to 1.12.3-1 after creating hdf5_1_12_2 release
preparation branch.
Clean release note entries from RELEASE.txt.
Diffstat (limited to 'java')
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 4 | ||||
-rw-r--r-- | java/test/TestH5.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 6364019..75cfe21 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -216,7 +216,7 @@ import hdf.hdf5lib.structs.H5O_token_t; * exception handlers to print out the HDF-5 error stack. * <hr> * - * @version HDF5 1.12.2 <BR> + * @version HDF5 1.12.3 <BR> * <b>See also: <a href ="./hdf.hdf5lib.HDFArray.html"> hdf.hdf5lib.HDFArray</a> </b><BR> * <a href ="./hdf.hdf5lib.HDF5Constants.html"> hdf.hdf5lib.HDF5Constants</a><BR> * <a href ="./hdf.hdf5lib.HDF5CDataTypes.html"> hdf.hdf5lib.HDF5CDataTypes</a><BR> @@ -239,7 +239,7 @@ public class H5 implements java.io.Serializable { * * Make sure to update the versions number when a different library is used. */ - public final static int LIB_VERSION[] = { 1, 12, 2 }; + public final static int LIB_VERSION[] = { 1, 12, 3 }; /** * add system property to load library by path diff --git a/java/test/TestH5.java b/java/test/TestH5.java index c74daf4..9ea3069 100644 --- a/java/test/TestH5.java +++ b/java/test/TestH5.java @@ -287,7 +287,7 @@ public class TestH5 { */ @Test public void testH5get_libversion() { - int libversion[] = { 1, 12, 2 }; + int libversion[] = { 1, 12, 3 }; try { H5.H5get_libversion(libversion); @@ -326,7 +326,7 @@ public class TestH5 { */ @Test public void testH5check_version() { - int majnum = 1, minnum = 12, relnum = 2; + int majnum = 1, minnum = 12, relnum = 3; try { H5.H5check_version(majnum, minnum, relnum); |