Releases: georust/netcdf
Releases · georust/netcdf
v0.8.3
src-v0.3.1
v0.8.2
The library now supports automatic group fetching, the code below is now allowed
let file = netcdf::open("file.nc")?;
let var = file.variable("a/b/c/varname")?;
Thanks to @AntoineRenaud91 for suggesting and implementing this feature
v0.8.0
Major/breaking changes:
- Uses a new extent type for easier put/get of values
- Updated
netcdf-c
to the latest version (4.9.1) compression
now allows setting the shuffle or variables on or off
What's Changed
- Use nc-config and bump ndarray by @magnusuMET in #83
- Upgrade hdf5-sys dependency by @magnusuMET in #84
- Add support for reading NC_STRING attribute values by @samoylovfp in #85
- Fix latest round of clippy lints by @magnusuMET in #86
- Use unsigned_abs by @magnusuMET in #87
- Add extents type by @magnusuMET in #88
- Make build.rs probe netcdf headers for features by @magnusuMET in #90
- Fix latest clippy lints by @magnusuMET in #97
- Fix clippy lints by @magnusuMET in #98
- Use more updated OS in CI by @magnusuMET in #99
- Add the shuffle option to the compression method by @richli in #102
- Update netcdf-c by @magnusuMET in #92
New Contributors
- @samoylovfp made their first contribution in #85
- @richli made their first contribution in #102
Full Changelog: v0.6.0...v0.8.0
v0.7.0
ndarray
has been updated to0.15
hdf5-sys
has been updated to0.8.0
AttrValue
now supportsNC_STRING
v0.6.0
- The type
NC_CHAR
is now recognized and supported
Release v0.5.0
This release features the following:
- Correctness fixes for seriial access to
nc
functions - Support for user defined types
- Using github actions for all CI
- Fix for buffer overflow for
path
onFile
- New feature
static
which allows for buildingnetCDF
andhdf5
from source