Skip to content

Commit 2de0095

Browse files
committed
Update to new versions
1 parent eb213c3 commit 2de0095

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ if (NOT H5PL_VERS_MAJOR)
4444
set (H5PL_VERS_MAJOR "1")
4545
endif ()
4646
if (NOT H5PL_VERS_MINOR)
47-
set (H5PL_VERS_MINOR "14")
47+
set (H5PL_VERS_MINOR "16")
4848
endif ()
4949
if (NOT H5PL_VERS_RELEASE)
50-
set (H5PL_VERS_RELEASE "3")
50+
set (H5PL_VERS_RELEASE "0")
5151
endif ()
5252
set (H5PL_OVERRIDE_VERSION "${H5PL_VERS_MAJOR}.${H5PL_VERS_MINOR}.${H5PL_VERS_RELEASE}")
5353

5454
set (H5PL_SOVERS_MAJOR 1)
5555
set (H5PL_SOVERS_MINOR 0)
56-
set (H5PL_SOVERS_INTERFACE 2)
56+
set (H5PL_SOVERS_INTERFACE 3)
5757
set (H5PL_SOVERS_RELEASE 0)
5858
math (EXPR H5PL_SOVERS_MAJOR ${H5PL_SOVERS_INTERFACE}-${H5PL_SOVERS_RELEASE})
5959

CMakePresets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"inherits": "ci-base",
1111
"cacheVariables": {
1212
"H5PL_VERS_MAJOR": {"type": "STRING", "value": "1"},
13-
"H5PL_VERS_MINOR": {"type": "STRING", "value": "15"},
13+
"H5PL_VERS_MINOR": {"type": "STRING", "value": "17"},
1414
"H5PL_VERS_RELEASE": {"type": "STRING", "value": "0"},
1515
"H5PL_ALLOW_EXTERNAL_SUPPORT": {"type": "STRING", "value": "TGZ"},
1616
"H5PL_COMP_TGZPATH": {"type": "STRING", "value": "${sourceDir}/libs"},

docs/INSTALL_With_CMake.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Obtaining HDF5 Filter source code
2424
2. Obtain HDF5 Filter source from Github
2525
development branch: https://github.com/HDFGroup/hdf5_plugins
2626
last release: https://github.com/HDFGroup/hdf5_plugins/releases/latest
27-
hdf5_plugins-1.14."X".tar.gz or hdf5_plugins-1.14."X".zip
27+
hdf5_plugins-1.16."X".tar.gz or hdf5_plugins-1.16."X".zip
2828

2929
and put it in "myhdfstuff".
3030
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
783783
"version": 6,
784784
"configurePresets": [
785785
{
786-
"name": "my-HDF5114",
786+
"name": "my-HDF5116",
787787
"hidden": true,
788788
"environment": {
789-
"HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.14.4"
789+
"HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.16.0"
790790
},
791791
"cacheVariables": {
792-
"HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.14.4"},
792+
"HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.16.0"},
793793
"H5PL_VERS_MAJOR": {"type": "STRING", "value": "1"},
794-
"H5PL_VERS_MINOR": {"type": "STRING", "value": "14"},
795-
"H5PL_VERS_RELEASE": {"type": "STRING", "value": "4"},
794+
"H5PL_VERS_MINOR": {"type": "STRING", "value": "16"},
795+
"H5PL_VERS_RELEASE": {"type": "STRING", "value": "0"},
796796
"H5PL_BUILD_TESTING": "ON",
797797
"H5PL_BUILD_EXAMPLES": "ON"
798798
}
@@ -801,10 +801,10 @@ For instance, to change the support files to use a local directory, edit CMakeUs
801801
"name": "my-HDF5Dev",
802802
"hidden": true,
803803
"environment": {
804-
"HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.15.0"
804+
"HDF5_ROOT": "${sourceParentDir}/HDF_Group/HDF5/1.17.0"
805805
},
806806
"cacheVariables": {
807-
"HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.15.0"},
807+
"HDF5_ROOT": {"type": "STRING", "value": "${sourceParentDir}/HDF_Group/HDF5/1.17.0"},
808808
"H5PL_BUILD_TESTING": "ON",
809809
"H5PL_BUILD_EXAMPLES": "ON"
810810
}

0 commit comments

Comments
 (0)