Skip to content

Commit 363a2fc

Browse files
committed
release 0.1.9
2 parents a66592d + 6c1ea66 commit 363a2fc

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "simple_excel_writer"
33
description = "Simple Excel Writer"
4-
version = "0.1.8"
4+
version = "0.1.9"
55
authors = ["outersky <[email protected]>"]
66
license = "Apache-2.0"
77
homepage="https://github.com/outersky/simple_excel_writer"
@@ -16,4 +16,5 @@ travis-ci = { repository = "outersky/simple_excel_writer" }
1616

1717
[dependencies]
1818
chrono = { version = "0.4.19", optional = true, default-features = false }
19-
zip = "0.5.13"
19+
# omit bzip2 feature
20+
zip = {version = "0.5.13", default-features = false, features = ["deflate", "time"] }

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ fn main() {
4747

4848
## Change Log
4949

50+
### 0.1.9 (2021-10-28)
51+
- support formula
52+
- support NaiveDate & NaiveDateTime
53+
- format dates and date times
54+
- Sheet name validation
55+
- remove unndecessary bzip2 dependency
56+
57+
many thanks to all contributors !
58+
5059
#### 0.1.7 (2020-04-29)
5160
- support create-in-memory mode, thanks to Maxburke.
5261

0 commit comments

Comments
 (0)