Skip to content

Commit

Permalink
Update versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Oct 3, 2024
1 parent eb213c3 commit 4f5dd09
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})

Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
16 changes: 8 additions & 8 deletions docs/INSTALL_With_CMake.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"
}
Expand All @@ -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"
}
Expand Down

0 comments on commit 4f5dd09

Please sign in to comment.