From 4151e96e8da4403c0f67fc43edd026a639a6876a Mon Sep 17 00:00:00 2001 From: Larry Knox Date: Tue, 11 Nov 2025 22:29:35 -0600 Subject: [PATCH] Increment minor version: set version 2.1.0. --- README.md | 2 +- config/cmake/scripts/HDF5config.cmake | 2 +- config/examples/HDF5AsSubdirMacros.cmake | 2 +- java/hdf/hdf5lib/H5.java | 4 ++-- java/src-jni/hdf/hdf5lib/H5.java | 4 ++-- java/src-jni/test/TestH5.java | 4 ++-- java/test/TestH5.java | 4 ++-- release_docs/CHANGELOG.md | 4 ++-- src/H5public.h | 8 ++++---- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index c67c5012dbc..f215565b215 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -HDF5 version 2.0.1 currently under development +HDF5 version 2.1.0 currently under development > [!WARNING] > **Heads Up: HDF5 Dropped Autotools March 10th** diff --git a/config/cmake/scripts/HDF5config.cmake b/config/cmake/scripts/HDF5config.cmake index 5df69b3d361..18333c1eee3 100644 --- a/config/cmake/scripts/HDF5config.cmake +++ b/config/cmake/scripts/HDF5config.cmake @@ -38,7 +38,7 @@ cmake_minimum_required (VERSION 3.26) # CTEST_SOURCE_NAME - source folder ############################################################################## -set (CTEST_SOURCE_VERSION "2.0.1") +set (CTEST_SOURCE_VERSION "2.1.0") set (CTEST_SOURCE_VERSEXT "") ############################################################################## diff --git a/config/examples/HDF5AsSubdirMacros.cmake b/config/examples/HDF5AsSubdirMacros.cmake index 62e46c547ac..eb86bc9f370 100644 --- a/config/examples/HDF5AsSubdirMacros.cmake +++ b/config/examples/HDF5AsSubdirMacros.cmake @@ -17,7 +17,7 @@ # and build it. The HDF5 options should be set after the FetchContent_Declare command and before # the add_subdirectory command.. macro (EXTERNAL_HDF5_LIBRARY compress_type) - set (HDF5_VERSION "2.0.1") + set (HDF5_VERSION "2.1.0") set (HDF5_VERSEXT "") set (HDF5_VERSION_MAJOR "2.0") set (HDF5LIB_TGZ_NAME "hdf5.tar.gz" CACHE STRING "Use HDF5LIB from compressed file" FORCE) diff --git a/java/hdf/hdf5lib/H5.java b/java/hdf/hdf5lib/H5.java index 317f8414bd6..6587c2b833b 100644 --- a/java/hdf/hdf5lib/H5.java +++ b/java/hdf/hdf5lib/H5.java @@ -256,7 +256,7 @@ * which prints out the HDF5 error stack, as described in the HDF5 C API @ref H5Eprint(). This * may be used by Java exception handlers to print out the HDF5 error stack.
* - * @version HDF5 2.0.1
+ * @version HDF5 2.1.0
* See also: * @ref HDFARRAY hdf.hdf5lib.HDFArray
* @ref HDF5CONST hdf.hdf5lib.HDF5Constants
@@ -298,7 +298,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[] = {2, 0, 1}; + public final static int LIB_VERSION[] = {2, 1, 0}; private final static LinkedHashSet OPEN_IDS = new LinkedHashSet(); private static boolean isLibraryLoaded = false; diff --git a/java/src-jni/hdf/hdf5lib/H5.java b/java/src-jni/hdf/hdf5lib/H5.java index d22f103ef8a..4cfebffab93 100644 --- a/java/src-jni/hdf/hdf5lib/H5.java +++ b/java/src-jni/hdf/hdf5lib/H5.java @@ -231,7 +231,7 @@ * which prints out the HDF5 error stack, as described in the HDF5 C API @ref H5Eprint(). This * may be used by Java exception handlers to print out the HDF5 error stack.
* - * @version HDF5 2.0.1
+ * @version HDF5 2.1.0
* See also: * @ref HDFARRAY hdf.hdf5lib.HDFArray
* @ref HDF5CONST hdf.hdf5lib.HDF5Constants
@@ -273,7 +273,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[] = {2, 0, 1}; + public final static int LIB_VERSION[] = {2, 1, 0}; /** * @ingroup JH5 diff --git a/java/src-jni/test/TestH5.java b/java/src-jni/test/TestH5.java index 2f5f72e1e8d..2bf2a96b97e 100644 --- a/java/src-jni/test/TestH5.java +++ b/java/src-jni/test/TestH5.java @@ -313,7 +313,7 @@ public void testH5set_free_list_limits() @Test public void testH5get_libversion() { - int libversion[] = {2, 0, 1}; + int libversion[] = {2, 1, 0}; try { H5.H5get_libversion(libversion); @@ -351,7 +351,7 @@ public void testH5get_libversion_null_param() @Test public void testH5check_version() { - int majnum = 2, minnum = 0, relnum = 1; + int majnum = 2, minnum = 1, relnum = 0; try { H5.H5check_version(majnum, minnum, relnum); diff --git a/java/test/TestH5.java b/java/test/TestH5.java index 2f5f72e1e8d..2bf2a96b97e 100644 --- a/java/test/TestH5.java +++ b/java/test/TestH5.java @@ -313,7 +313,7 @@ public void testH5set_free_list_limits() @Test public void testH5get_libversion() { - int libversion[] = {2, 0, 1}; + int libversion[] = {2, 1, 0}; try { H5.H5get_libversion(libversion); @@ -351,7 +351,7 @@ public void testH5get_libversion_null_param() @Test public void testH5check_version() { - int majnum = 2, minnum = 0, relnum = 1; + int majnum = 2, minnum = 1, relnum = 0; try { H5.H5check_version(majnum, minnum, relnum); diff --git a/release_docs/CHANGELOG.md b/release_docs/CHANGELOG.md index 8b493cbcaa5..32bf7448905 100644 --- a/release_docs/CHANGELOG.md +++ b/release_docs/CHANGELOG.md @@ -1,4 +1,4 @@ -HDF5 version 2.0.1 currently under development +HDF5 version 2.1.0 currently under development # 🔺 HDF5 Changelog All notable changes to this project will be documented in this file. This document describes the differences between this release and the previous @@ -21,7 +21,7 @@ For releases prior to version 2.0.0, please see the release.txt file and for mor * [Platforms Tested](CHANGELOG.md#%EF%B8%8F-platforms-tested) * [Known Problems](CHANGELOG.md#-known-problems) -# 🔆 Executive Summary: HDF5 Version 2.0.1 +# 🔆 Executive Summary: HDF5 Version 2.1.0 ## Performance Enhancements: diff --git a/src/H5public.h b/src/H5public.h index 9a28f69e11c..17d7c97f743 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -65,11 +65,11 @@ /** * For minor interface/format changes */ -#define H5_VERS_MINOR 0 +#define H5_VERS_MINOR 1 /** * For tweaks, bug-fixes, or development */ -#define H5_VERS_RELEASE 1 +#define H5_VERS_RELEASE 0 /** * For pre-releases like \c snap0. Empty string for official releases. */ @@ -77,11 +77,11 @@ /** * Short version string */ -#define H5_VERS_STR "2.0.1" +#define H5_VERS_STR "2.1.0" /** * Full version string */ -#define H5_VERS_INFO "HDF5 library version: 2.0.1" +#define H5_VERS_INFO "HDF5 library version: 2.1.0" #define H5check() H5check_version(H5_VERS_MAJOR, H5_VERS_MINOR, H5_VERS_RELEASE)