Releases: CHRISCARLON/nebby
Releases · CHRISCARLON/nebby
Nebby v0.1.4
Included DeltaLake processing
Nebby v0.1.3
Improved json parsing features
Nebby v0.1.2
Added in progress bar feature and file type matches for bytes reader
Nebb v0.1.1
Release notes for version 0.1.1
- Fixed sheet iteration issue for display_remote_basic_info function.
// Loop through sheets for (index, sheet_name) in sheet_names.iter().enumerate() { if let Some(Ok(range)) = workbook.worksheet_range_at(index)
Needed to ensure that the correct index was set:
workbook.worksheet_range_at(index)
instead of 'workbook.worksheet_range_at[0] - which meant that you would iterate through the sheet names but only access info from the first sheet.
Nebb v0.1.0
Release notes for version 0.1.0
Initial release for Nebby.
Basic functionality.
Project under active development.