Skip to content

Commit

Permalink
release: 0.59.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Dec 15, 2023
1 parent ca67bf7 commit b8a7ab1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,23 @@ All notable changes to rust_xlsxwriter 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.59.0] - 2023-12-15

### Added

- Added [`serialize_chrono_option_naive_to_excel()`] to help serialization of
`Option` Chrono types. [Feature Request #62].

[Feature Request #62]: https://github.com/jmcnamara/rust_xlsxwriter/pull/62

[`serialize_chrono_option_naive_to_excel()`]: https://docs.rs/rust_xlsxwriter/latest/rust_xlsxwriter/utility/fn.serialize_chrono_option_naive_to_excel.html


## [0.58.0] - 2023-12-11

### Added

- Added serialization support for [`ExcelDateTime`] and [`Chrono`] date/time
types. See [Working with Serde - Serializing dates and times].

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/jmcnamara/rust_xlsxwriter"
keywords = ["excel", "xlsx"]
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "0.58.0"
version = "0.59.0"
edition = "2021"

[dependencies]
Expand Down
10 changes: 10 additions & 0 deletions examples/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1044,6 +1044,16 @@ documentation and generally show how an individual function works.
instances of a Serde derived data structure, including chrono datetimes,
to a worksheet.

* `doc_worksheet_serialize_datetime3.rs` - Example of a serializable struct
with a Chrono Naive value with a helper function.

* `doc_worksheet_serialize_datetime4.rs` - Demonstrates serializing
instances of a Serde derived data structure, including `Option` chrono
datetimes, to a worksheet.

* `doc_worksheet_serialize_datetime5.rs` - Example of a serializable struct
with an Option Chrono Naive value with a helper function.

* `doc_worksheet_serialize_headers1.rs` - Demonstrates serializing
instances of a Serde derived data structure to a worksheet.

Expand Down

0 comments on commit b8a7ab1

Please sign in to comment.