Skip to content

Commit a1d8748

Browse files
committed
fix plotly_static readme link
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent dcbfd10 commit a1d8748

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

plotly/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dyn-clone = "1"
5151
erased-serde = "0.4"
5252
image = { version = "0.25", optional = true }
5353
plotly_derive = { version = "0.13", path = "../plotly_derive" }
54-
plotly_static = { version = "0.0.2", path = "../plotly_static", optional = true }
54+
plotly_static = { version = "0.0.3", path = "../plotly_static", optional = true }
5555
plotly_kaleido = { version = "0.13", path = "../plotly_kaleido", optional = true }
5656
ndarray = { version = "0.16", optional = true }
5757
once_cell = "1"

plotly_static/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly_static"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "Export Plotly graphs to static images using WebDriver"
55
authors = ["Andrei Gherghescu [email protected]"]
66
license = "MIT"
@@ -46,4 +46,4 @@ webdriver-downloader = "0.16"
4646

4747
# Needed for docs.rs to build the documentation
4848
[package.metadata.docs.rs]
49-
features = ["chromedriver"]
49+
features = ["chromedriver"]

plotly_static/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add to your `Cargo.toml`:
5656

5757
```toml
5858
[dependencies]
59-
plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] }
59+
plotly_static = { version = "0.0.3", features = ["chromedriver", "webdriver_download"] }
6060
serde_json = "1.0"
6161
```
6262

@@ -151,7 +151,7 @@ Similar examples are available in the [Plotly.rs package](https://github.com/plo
151151
## Documentation
152152

153153
- [API Documentation](https://docs.rs/plotly_static/)
154-
- [Static Image Export Guide](../../docs/book/src/fundamentals/static_image_export.md)
154+
- [Static Image Export Guide](https://github.com/plotly/plotly.rs/tree/main/docs/book/src/fundamentals/static_image_export.md)
155155

156156
## License
157157

plotly_static/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
//!
7575
//! ```toml
7676
//! [dependencies]
77-
//! plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] }
77+
//! plotly_static = { version = "0.0.3", features = ["chromedriver", "webdriver_download"] }
7878
//! ```
7979
//!
8080
//! ## Advanced Usage

0 commit comments

Comments
 (0)