Skip to content

Latest commit

 

History

History
93 lines (64 loc) · 3.31 KB

NEWS.md

File metadata and controls

93 lines (64 loc) · 3.31 KB

RData v0.6.0 Release Notes

Support RData version 3 serialization format (R ≥ 3.5)

Changes
  • fix readuint8() and remove Missings.jl dependency #49
  • improve class() and inherits() methods #51
  • support RData version 3 #53, #54
  • support integer R dates #55

RData v0.5.0 Release Notes

Updated to Julia v0.7 (older versions not supported)

Changes
  • update to Julia v0.7+ and drop support for older versions #42, #44
  • improve FileIO integration #46
  • fix unix2zdt() overwritten method warning #41, #47

RData v0.4.0 Release Notes

Changes
  • add support for .rds files (single object data files from R) #22, #33
  • add support for Date and POSIXct (only for timezone codes supported by TimeZones) data #34, #35

RData v0.3.0 Release Notes

Updated to DataFrames v0.11, switched from DataArrays to Missings and CategoricalArrays.

Changes
  • updated to DataFrames v0.11 #28
  • switched from DataVector to Vector{Union{T, Missing}} for NAs #28
  • R factors converted into CategoricalVector (instead of PooledDataArray) #28

RData v0.2.0 Release Notes

Updated to Julia v0.6 (older versions not supported).

Changes
  • R logical vectors are converted to DataVector{Bool} (instead of DataVector{Int32}) #32
  • dropped compatibility with Julia versions prior v0.6 #32
  • use CodecZlib for gzipped RData files (instead of outdated GZip) #31

RData v0.1.0 Release Notes

Support Julia v0.6

Changes
  • suppress warnings on Julia v0.6 #26

RData v0.0.4 Release Notes

Now the recommended way to load .RData/.rda files is by FileIO.load().

Changes
  • FileIO.jl integration (#6, #15)
  • Enable precompilation (#9)
  • Fix numeric NA detection (#10)

RData v0.0.1 Release Notes

Initial release based on DataFrames.read_rda() (JuliaData/DataFrames.jl#1031).