diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2022-04-08 18:38:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 18:38:20 (GMT) |
commit | daf36524d20729a795c5ea26081cd8365dc1b98b (patch) | |
tree | a532ec45ea20d39b557201bbd820214cc1ad8e09 /bin | |
parent | 236297c00d630b391b2ee3b98e67b0b83d642a12 (diff) | |
download | hdf5-daf36524d20729a795c5ea26081cd8365dc1b98b.zip hdf5-daf36524d20729a795c5ea26081cd8365dc1b98b.tar.gz hdf5-daf36524d20729a795c5ea26081cd8365dc1b98b.tar.bz2 |
Undo increment of max_idx for addition of 1.14 verrsion from develop in (#1623)
Diffstat (limited to 'bin')
-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 f1399a4..064563f 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, etc) +$max_idx = 6; # Min. supported previous library version "index" (0 = v1.0, 1 = 1.2, etc) $min_sup_idx = 3; |