Skip to content

Commit

Permalink
Add deprecations needed from JuliaIO#652
Browse files Browse the repository at this point in the history
  • Loading branch information
jmert committed Sep 9, 2020
1 parent 8ca097c commit 728eefd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ function p_create(class, prop1::String, val1, pv...)
return p_create(class; [Symbol(props[i]) => props[i+1] for i in 1:2:length(props)]...)
end

### Changed in PR#652
# - read takes array element type, not Array with eltype
@deprecate read(obj::DatasetOrAttribute, ::Type{A}, I...) where {A<:Array} read(obj, eltype(A), I...)

### Changed in PR#657
# - using keywords instead of HDF5Properties objects

Expand Down

0 comments on commit 728eefd

Please sign in to comment.