Skip to content

Commit

Permalink
Updated version dependencies, and fixed a very minor integer overflow…
Browse files Browse the repository at this point in the history
… bug (when applying a unary minus to signed integers that had previously overflowed during parsing, when the value overflows to min_value exactly. Since we already return an ErrorKind::Overflow for this, this error should be should be silenced with wrapping_neg.
  • Loading branch information
Alex Huszagh committed Dec 16, 2018
1 parent 21e993e commit 466a633
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "1.8.1"
version = "1.8.2"
exclude = [
"data/*",
"benches/*",
Expand All @@ -20,7 +20,7 @@ travis-ci = { repository = "Alexhuszagh/rust-lexical" }

[dependencies]
cfg-if = "0.1"
lexical-core = { path = "lexical-core", version = "0.1.0" }
lexical-core = { path = "lexical-core", version = "0.1" }
# The following are only required for comprehensive float unittests.
# IE, internal testing only:
rand = { version = "0.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion lexical-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
name = "lexical-core"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core"
version = "0.1.2"
version = "0.1.3"

[badges]
travis-ci = { repository = "Alexhuszagh/rust-lexical" }
Expand Down

0 comments on commit 466a633

Please sign in to comment.