Skip to content

Commit f68ea92

Browse files
committed
update version in READMEs
Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com>
1 parent 07dc425 commit f68ea92

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Add this to your `Cargo.toml`:
6363

6464
```toml
6565
[dependencies]
66-
plotly = "0.13"
66+
plotly = "0.14"
6767
```
6868

6969
## Exporting a single Interactive Plot
@@ -103,7 +103,7 @@ The recommended way to export static images is using the `plotly_static` backend
103103

104104
```toml
105105
[dependencies]
106-
plotly = { version = "0.13", features = ["static_export_default"] }
106+
plotly = { version = "0.14", features = ["static_export_default"] }
107107
```
108108

109109
This supports PNG, JPEG, WEBP, SVG, and PDF formats:
@@ -136,15 +136,15 @@ Enable the `kaleido` feature and opt in for automatic downloading of the `kaleid
136136
# Cargo.toml
137137

138138
[dependencies]
139-
plotly = { version = "0.13", features = ["kaleido", "kaleido_download"] }
139+
plotly = { version = "0.14", features = ["kaleido", "kaleido_download"] }
140140
```
141141

142142
Alternatively, enable only the `kaleido` feature and manually install Kaleido.
143143
```toml
144144
# Cargo.toml
145145

146146
[dependencies]
147-
plotly = { version = "0.13", features = ["kaleido"] }
147+
plotly = { version = "0.14", features = ["kaleido"] }
148148
```
149149

150150
With the feature enabled, plots can be saved as any of `png`, `jpeg`, `webp`, `svg`, `pdf` and `eps`. Note that the plot will be a static image, i.e. they will be non-interactive.

docs/book/src/fundamentals/static_image_export.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ The static export functionality is controlled by feature flags in the main `plot
2323
```toml
2424
# Basic usage with manual Chromedriver installation
2525
[dependencies]
26-
plotly = { version = "0.13", features = ["static_export_chromedriver"] }
26+
plotly = { version = "0.14", features = ["static_export_chromedriver"] }
2727

2828
# With automatic Chromedriver download
2929
[dependencies]
30-
plotly = { version = "0.13", features = ["static_export_chromedriver", "static_export_wd_download"] }
30+
plotly = { version = "0.14", features = ["static_export_chromedriver", "static_export_wd_download"] }
3131

3232
# Recommended: Default configuration with Chromedriver + auto-download
3333
[dependencies]
34-
plotly = { version = "0.13", features = ["static_export_default"] }
34+
plotly = { version = "0.14", features = ["static_export_default"] }
3535
```
3636

3737
> Enabling any of the static export features in `plotly` (`static_export_chromedriver`, `static_export_geckodriver`, or `static_export_default`) enables both APIs from `plotly_static`: the sync `StaticExporter` and the async `AsyncStaticExporter` (reachable as `plotly::plotly_static::AsyncStaticExporter`). Prefer the async API inside async code.

docs/book/src/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To start using [plotly.rs](https://github.com/plotly/plotly.rs) in your project
2222

2323
```toml
2424
[dependencies]
25-
plotly = "0.13"
25+
plotly = "0.14"
2626
```
2727

2828
[Plotly.rs](https://github.com/plotly/plotly.rs) is ultimately a thin wrapper around the `plotly.js` library. The main job of this library is to provide `structs` and `enums` which get serialized to `json` and passed to the `plotly.js` library to actually do the heavy lifting. As such, if you are familiar with `plotly.js` or its derivatives (e.g. the equivalent Python library), then you should find [`plotly.rs`](https://github.com/plotly/plotly.rs) intuitive to use.
@@ -97,7 +97,7 @@ To add the ability to save plots in the following formats: png, jpeg, webp, svg,
9797

9898
```toml
9999
[dependencies]
100-
plotly = { version = "0.13", features = ["kaleido"] }
100+
plotly = { version = "0.14", features = ["kaleido"] }
101101
```
102102

103103
## Static Image Export with WebDriver (recommended)
@@ -106,7 +106,7 @@ For static image export using WebDriver and headless browsers, you can use the `
106106

107107
```toml
108108
[dependencies]
109-
plotly = { version = "0.13", features = ["static_export_default"] }
109+
plotly = { version = "0.14", features = ["static_export_default"] }
110110
```
111111

112112
The `static_export_default` feature includes Chrome WebDriver support with automatic download. For Firefox support, use `static_export_geckodriver` instead. See the [Static Image Export](../fundamentals/static_image_export.md) chapter for a detailed usage example.

examples/static_export/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ The example uses `static_export_default` which includes:
3636

3737
```toml
3838
# Use Firefox instead of Chrome/Chromium
39-
plotly = { version = "0.13", features = ["static_export_geckodriver", "static_export_wd_download"] }
39+
plotly = { version = "0.14", features = ["static_export_geckodriver", "static_export_wd_download"] }
4040

4141
# Manual Geckodriver installation (no automatic download)
42-
plotly = { version = "0.13", features = ["static_export_geckodriver"] }
42+
plotly = { version = "0.14", features = ["static_export_geckodriver"] }
4343

4444
# Manual Chromedriver installation (no automatic download)
45-
plotly = { version = "0.13", features = ["static_export_chromedriver"] }
45+
plotly = { version = "0.14", features = ["static_export_chromedriver"] }
4646
```
4747

4848
## Running the Example(s)

0 commit comments

Comments
 (0)