polars_excel_writer 0.10.0

A Polars extension to serialize dataframes to Excel xlsx files
Documentation
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - 2025-01-05

### Added

- Update dependencies to `rust_xlsxwriter` 0.80.0 and `Polars` 0.44.

- Changed documentation to highlight `write_xlsx` as the primary interface,
  since that will be the main interface in future releases.


## [0.9.0] - 2024-09-18

### Added

- Update dependencies to `rust_xlsxwriter` 0.77.0 and `Polars` 0.43.


## [0.8.0] - 2024-08-24

### Added

- Update dependencies to `rust_xlsxwriter` 0.74.0 and `Polars` 0.42.0.


## [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.

[`set_worksheet_name()`]: https://docs.rs/polars_excel_writer/latest/polars_excel_writer/xlsx_writer/struct.PolarsXlsxWriter.html#method.set_worksheet_name

[`add_worksheet()`]: https://docs.rs/polars_excel_writer/latest/polars_excel_writer/xlsx_writer/struct.PolarsXlsxWriter.html#method.add_worksheet

[`worksheet()`]: https://docs.rs/polars_excel_writer/latest/polars_excel_writer/xlsx_writer/struct.PolarsXlsxWriter.html#method.worksheet


## [0.2.0] - 2023-09-04

### Added

- Added support for setting worksheet table properties via the PolarsXlsxWriter
  [`set_table()`] method.

[`set_table()`]: https://docs.rs/polars_excel_writer/latest/polars_excel_writer/xlsx_writer/struct.PolarsXlsxWriter.html#method.set_table

## [0.1.0] - 2023-08-20

### Added

- First functional version.