-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement deserialize to NamedColor, Rgb, Rgba and bump plotly versio…
…n for next release (#267) * implement deserialize to NamedColor, Rgb, Rgba - remove prefix test_ from all unittest function names - bump crate version to 0.12 Fixes #264 Signed-off-by: Andrei Gherghescu <[email protected]>
- Loading branch information
Showing
32 changed files
with
543 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "plotly" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
description = "A plotting library powered by Plotly.js" | ||
authors = ["Ioannis Giagkiozis <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -32,8 +32,8 @@ erased-serde = "0.4" | |
getrandom = { version = "0.2", features = ["js"], optional = true } | ||
image = { version = "0.25", optional = true } | ||
js-sys = { version = "0.3", optional = true } | ||
plotly_derive = { version = "0.11", path = "../plotly_derive" } | ||
plotly_kaleido = { version = "0.11", path = "../plotly_kaleido", optional = true } | ||
plotly_derive = { version = "0.12", path = "../plotly_derive" } | ||
plotly_kaleido = { version = "0.12", path = "../plotly_kaleido", optional = true } | ||
ndarray = { version = "0.16", optional = true } | ||
once_cell = "1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
@@ -50,7 +50,7 @@ image = "0.25" | |
itertools = ">=0.10, <0.15" | ||
itertools-num = "0.1" | ||
ndarray = "0.16" | ||
plotly_kaleido = { version = "0.11", path = "../plotly_kaleido", features = [ | ||
plotly_kaleido = { version = "0.12", path = "../plotly_kaleido", features = [ | ||
"download", | ||
] } | ||
rand_distr = "0.4" | ||
|
Oops, something went wrong.