diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-12-21 18:07:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 18:07:25 (GMT) |
commit | 9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab (patch) | |
tree | 2f237d0865fa37db7ad56d7182978db4258488fa /bin/make_vers | |
parent | 976e8c97504cfbce40c565b02a01d29006350c6b (diff) | |
download | hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.zip hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.tar.gz hdf5-9f5cf0a45748fcb7ced4f4619d7c6c76cb3f67ab.tar.bz2 |
H5F_LIBVER_LATEST changes for move to 1.15 (#2288)
* H5F_LIBVER_LATEST changes for move to 1.15
* Add new default api check
* Format fixes
* Fix default configure
* fix lib version tests
* Fix another version variable
* Add 1.14 doc link
Diffstat (limited to 'bin/make_vers')
-rwxr-xr-x | bin/make_vers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/make_vers b/bin/make_vers index 956fbfd..1e21bf7 100755 --- a/bin/make_vers +++ b/bin/make_vers @@ -8,8 +8,8 @@ use warnings; # is added (like support for 1.4, etc), the min_sup_idx parameter will # need to be decremented.) -# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, 7 = 1.14, etc) -$max_idx = 7; +# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, 7 = 1.14, 8 = 1.16, etc) +$max_idx = 8; # Min. supported previous library version "index" (0 = v1.0, 1 = 1.2, etc) $min_sup_idx = 3; |