Skip to content

Releases: CHRISCARLON/nebby

Nebby v0.1.4

13 Oct 21:47
Compare
Choose a tag to compare

Included DeltaLake processing

Nebby v0.1.3

19 Sep 20:19
Compare
Choose a tag to compare

Improved json parsing features

Nebby v0.1.2

18 Sep 20:51
Compare
Choose a tag to compare

Added in progress bar feature and file type matches for bytes reader

Nebb v0.1.1

18 Sep 17:54
Compare
Choose a tag to compare

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

17 Sep 22:36
88f393b
Compare
Choose a tag to compare

Release notes for version 0.1.0

Initial release for Nebby.

Basic functionality.

Project under active development.