Skip to content

Commit

Permalink
bump v0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tafia committed Jun 16, 2023
1 parent a904e3d commit e9c57f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "calamine"
version = "0.21.0"
version = "0.21.1"
authors = ["Johann Tuffe <tafia973@gmail.com>"]
repository = "/~https://github.com/tafia/calamine"
documentation = "https://docs.rs/calamine"
Expand Down Expand Up @@ -33,6 +33,6 @@ serde_derive = "1.0"
sha256 = "1.1"

[features]
default = ["dates"]
default = []
dates = ["chrono", "once_cell"]
picture = []
1 change: 1 addition & 0 deletions src/xls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1299,6 +1299,7 @@ fn parse_formula(
}
}

/// FormulaValue [MS-XLS 2.5.133]
fn parse_formula_value(r: &[u8]) -> Result<Option<DataType>, XlsError> {
match r {
&[0x00, .., 0xFF, 0xFF] => Ok(None), // String, value should be in next record
Expand Down

0 comments on commit e9c57f9

Please sign in to comment.