Skip to content

Latest commit

 

History

History
74 lines (36 loc) · 1.96 KB

CHANGELOG.md

File metadata and controls

74 lines (36 loc) · 1.96 KB

Changelog

All notable changes to polars_excel_writer will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.7.0] - 2024-03-25

Added

  • Update dependencies to rust_xlsxwriter 0.63.0 and Polars 0.37.0.

[0.6.0] - 2024-01-24

Added

  • Update dependencies to rust_xlsxwriter 0.62.0 and Polars 0.36.2.

[0.5.0] - 2024-01-15

Added

  • Added support for writing u64 and i64 number within Excel's limitations. This implies a loss of precision outside Excel's integer range of +/- 999,999,999,999,999 (15 digits).

[0.4.0] - 2023-11-22

Added

  • Update to the latest rust_xlsxwriter to fix issues with PolarsError type/location.

[0.3.0] - 2023-09-05

Added

More worksheet utility methods.

  • Added support for renaming worksheets via the set_worksheet_name() method.

  • Added support for adding worksheets via the add_worksheet() method. This allows you to add dataframes to several different worksheets in a workbook.

  • Added support for accessing the current worksheets via the worksheet() method.

[0.2.0] - 2023-09-04

Added

  • Added support for setting worksheet table properties via the PolarsXlsxWriter set_table() method.

[0.1.0] - 2023-08-20

Added

  • First functional version.