Skip to content

Commit d27f050

Browse files
committed
Support 1.10 again
1 parent 85b68cb commit d27f050

5 files changed

Lines changed: 6377 additions & 12 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ experimental Ruby bindings for the HDF5 library
66

77
## Supported HDF5 Versions
88

9+
- HDF5 1.10
910
- HDF5 1.14
1011
- HDF5 2.x
1112

12-
HDF5 1.10 and older are not supported.
13+
HDF5 versions older than 1.10 are not supported.
1314

1415
## Basic I/O
1516

lib/hdf5/ffi.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ def self.attach_variable(*)
4444
release = release_ptr.read_uint
4545

4646
@backend = case [major, minor]
47+
in [1, 10..13]
48+
'ffi_10'
4749
in [1, 14..]
4850
'ffi_14'
4951
in [2.., _]

0 commit comments

Comments
 (0)