From 4f5dd09759928f12a5d44ee04a45bdb7c18aa31b Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 3 Oct 2024 08:42:42 -0500 Subject: [PATCH] Update versions to latest --- CMakeLists.txt | 6 +++--- CMakePresets.json | 2 +- docs/INSTALL_With_CMake.txt | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06fce6b9..cfe0d367 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,16 +44,16 @@ if (NOT H5PL_VERS_MAJOR) set (H5PL_VERS_MAJOR "1") endif () if (NOT H5PL_VERS_MINOR) - set (H5PL_VERS_MINOR "14") + set (H5PL_VERS_MINOR "16") endif () if (NOT H5PL_VERS_RELEASE) - set (H5PL_VERS_RELEASE "3") + set (H5PL_VERS_RELEASE "0") endif () set (H5PL_OVERRIDE_VERSION "${H5PL_VERS_MAJOR}.${H5PL_VERS_MINOR}.${H5PL_VERS_RELEASE}") set (H5PL_SOVERS_MAJOR 1) set (H5PL_SOVERS_MINOR 0) -set (H5PL_SOVERS_INTERFACE 2) +set (H5PL_SOVERS_INTERFACE 3) set (H5PL_SOVERS_RELEASE 0) math (EXPR H5PL_SOVERS_MAJOR ${H5PL_SOVERS_INTERFACE}-${H5PL_SOVERS_RELEASE}) diff --git a/CMakePresets.json b/CMakePresets.json index 63f1b775..2e53f37b 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -10,7 +10,7 @@ "inherits": "ci-base", "cacheVariables": { "H5PL_VERS_MAJOR": {"type": "STRING", "value": "1"}, - "H5PL_VERS_MINOR": {"type": "STRING", "value": "15"}, + "H5PL_VERS_MINOR": {"type": "STRING", "value": "16"}, "H5PL_VERS_RELEASE": {"type": "STRING", "value": "0"}, "H5PL_ALLOW_EXTERNAL_SUPPORT": {"type": "STRING", "value": "TGZ"}, "H5PL_COMP_TGZPATH": {"type": "STRING", "value": "${sourceDir}/libs"}, diff --git a/docs/INSTALL_With_CMake.txt b/docs/INSTALL_With_CMake.txt index 1d7da60d..102f3858 100644 --- a/docs/INSTALL_With_CMake.txt +++ b/docs/INSTALL_With_CMake.txt @@ -24,7 +24,7 @@ Obtaining HDF5 Filter source code 2. Obtain HDF5 Filter source from Github development branch: https://github.com/HDFGroup/hdf5_plugins last release: https://github.com/HDFGroup/hdf5_plugins/releases/latest - hdf5_plugins-1.14."X".tar.gz or hdf5_plugins-1.14."X".zip + hdf5_plugins-1.16."X".tar.gz or hdf5_plugins-1.16."X".zip and put it in "myhdfstuff". Uncompress the file. There should be a hdf5_plugins-1."Y.X" folder. @@ -783,16 +783,16 @@ For instance, to change the support files to use a local directory, edit CMakeUs "version": 6, "configurePresets": [ { - "name": "my-HDF5114", + "name": "my-HDF5116", "hidden": true, "environment": { - "HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.14.4" + "HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.16.0" }, "cacheVariables": { - "HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.14.4"}, + "HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.16.0"}, "H5PL_VERS_MAJOR": {"type": "STRING", "value": "1"}, - "H5PL_VERS_MINOR": {"type": "STRING", "value": "14"}, - "H5PL_VERS_RELEASE": {"type": "STRING", "value": "4"}, + "H5PL_VERS_MINOR": {"type": "STRING", "value": "16"}, + "H5PL_VERS_RELEASE": {"type": "STRING", "value": "0"}, "H5PL_BUILD_TESTING": "ON", "H5PL_BUILD_EXAMPLES": "ON" } @@ -801,10 +801,10 @@ For instance, to change the support files to use a local directory, edit CMakeUs "name": "my-HDF5Dev", "hidden": true, "environment": { - "HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.15.0" + "HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.17.0" }, "cacheVariables": { - "HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.15.0"}, + "HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.17.0"}, "H5PL_BUILD_TESTING": "ON", "H5PL_BUILD_EXAMPLES": "ON" }