Skip to content

Commit

Permalink
release: 0.58.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcnamara committed Dec 11, 2023
1 parent 0a390af commit a4c5dd8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.58.0] - 2023-12-11

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

[Working with Serde - Serializing dates and times]: https://docs.rs/rust_xlsxwriter/latest/rust_xlsxwriter/serializer/index.html#serializing-dates-and-times


## [0.57.0] - 2023-12-09

### Added
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.57.0"
version = "0.58.0"
edition = "2021"

[dependencies]
Expand Down
8 changes: 8 additions & 0 deletions examples/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,14 @@ documentation and generally show how an individual function works.
* `doc_worksheet_serialize.rs` - Demonstrates serializing instances of a
Serde derived data structure to a worksheet.

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

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

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

Expand Down

0 comments on commit a4c5dd8

Please sign in to comment.