Skip to content

Commit 5110ba3

Browse files
committed
fix plotly_static docs.rs build
Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com>
1 parent 597c737 commit 5110ba3

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
- run: cargo publish --allow-dirty -p plotly_kaleido
2626
- run: sleep 10
2727
- run: cargo publish --allow-dirty -p plotly
28-
- run: sleep 10
29-
- run: cargo publish --allow-dirty -p plotly_static --features webdriver_download,chromedriver
28+
# plotly_static is not part of the same ecosystem yet so it doesn't use the same TOKEN
29+
# - run: sleep 10
30+
# - run: cargo publish --allow-dirty -p plotly_static --features webdriver_download,chromedriver
3031

3132
create-gh-release:
3233
name: Deploy to GH Releases

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [0.13.3] - 2025-xx-xx
67

7-
## [0.13.2] - 2025-xx-xx
8-
- [[#327](https://github.com/plotly/plotly.rs/pull/327)] Fix book broken link
8+
### Fixed
9+
### Changed
910

10-
### Fixed
11-
- [[#326](https://github.com/plotly/plotly.rs/pull/326)] Fix book badges
11+
## [0.13.2] - 2025-07-12
12+
13+
### Fixed
14+
- [[#336](https://github.com/plotly/plotly.rs/pull/336)] Fix `plotly_static` docs.rs build
15+
- [[#327](https://github.com/plotly/plotly.rs/pull/327)] Fix book broken link
1216

1317
## [0.13.1] - 2025-07-07
1418

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.1", path = "../plotly_static", optional = true }
54+
plotly_static = { version = "0.0.2", 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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly_static"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "Export Plotly graphs to static images using WebDriver"
55
authors = ["Andrei Gherghescu andrei-ng@protonmail.com"]
66
license = "MIT"
@@ -43,3 +43,7 @@ anyhow = "1.0"
4343
dirs = "6.0"
4444
zip = "4.0"
4545
webdriver-downloader = "0.16"
46+
47+
# Needed for docs.rs to build the documentation
48+
[package.metadata.docs.rs]
49+
features = ["chromedriver"]

plotly_static/README.md

Lines changed: 1 addition & 1 deletion
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.1", features = ["chromedriver", "webdriver_download"] }
59+
plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] }
6060
serde_json = "1.0"
6161
```
6262

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.1", features = ["chromedriver", "webdriver_download"] }
77+
//! plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] }
7878
//! ```
7979
//!
8080
//! ## Advanced Usage

0 commit comments

Comments
 (0)