Skip to content

Commit 49bd3a8

Browse files
authored
0.8.3 (#124)
* bump versions * update chengelog
1 parent 8b1713a commit 49bd3a8

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66
## [0.8.3] - 2022-11-04
77
### Fixed
88
- [[#122](https://github.com/igiagkiozis/plotly/pull/122)] Compilation error for the `wasm` feature.
9+
- [[#123](https://github.com/igiagkiozis/plotly/pull/123)] Compilation error for the `plotly_kaleido` feature.
910

1011
## [0.8.2] - 2022-11-03
1112
### Added

README.md

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

5656
```toml
5757
[dependencies]
58-
plotly = "0.8.2"
58+
plotly = "0.8.3"
5959
```
6060

6161
## Exporting an Interactive Plot
@@ -97,7 +97,7 @@ To save a plot as a static image, the `kaleido` feature is required:
9797
# Cargo.toml
9898

9999
[dependencies]
100-
plotly = { version = "0.8.2", features = ["kaleido"] }
100+
plotly = { version = "0.8.3", features = ["kaleido"] }
101101
```
102102

103103
With this 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.
@@ -124,7 +124,7 @@ Using `Plotly.rs` in a Wasm-based frontend framework is possible by enabling the
124124
# Cargo.toml
125125

126126
[dependencies]
127-
plotly = { version = "0.8.2", features = ["wasm"] }
127+
plotly = { version = "0.8.3", features = ["wasm"] }
128128
```
129129

130130
First, make sure that you have the Plotly JavaScript library in your base HTML template:

docs/book/src/getting_started.md

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

2323
```toml
2424
[dependencies]
25-
plotly = "0.8.2"
25+
plotly = "0.8.3"
2626
```
2727

2828
[Plotly.rs](https://github.com/igiagkiozis/plotly) 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/igiagkiozis/plotly) 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.8.2", features = ["kaleido"] }
100+
plotly = { version = "0.8.3", features = ["kaleido"] }
101101
```
102102

103103
## WebAssembly Support

plotly/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "A plotting library powered by Plotly.js"
55
authors = ["Ioannis Giagkiozis <[email protected]>"]
66
license = "MIT"
@@ -26,8 +26,8 @@ erased-serde = "0.3"
2626
getrandom = { version = "0.2", features = ["js"], optional = true }
2727
image = { version = "0.24.2", optional = true }
2828
js-sys = { version = "0.3", optional = true }
29-
plotly_derive = { version = "0.8.2", path = "../plotly_derive" }
30-
plotly_kaleido = { version = "0.3.0", path = "../plotly_kaleido", optional = true }
29+
plotly_derive = { version = "0.8.3", path = "../plotly_derive" }
30+
plotly_kaleido = { version = "0.8.3", path = "../plotly_kaleido", optional = true }
3131
ndarray = { version = "0.15.4", optional = true }
3232
once_cell = "1"
3333
serde = { version = "1.0.132", features = ["derive"] }
@@ -44,5 +44,5 @@ image = "0.24.4"
4444
itertools = "0.10.3"
4545
itertools-num = "0.1.3"
4646
ndarray = "0.15.4"
47-
plotly_kaleido = { version = "0.3.0", path = "../plotly_kaleido" }
47+
plotly_kaleido = { version = "0.8.3", path = "../plotly_kaleido" }
4848
rand_distr = "0.4"

plotly_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly_derive"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "Internal proc macro crate for Plotly-rs."
55
authors = ["Ioannis Giagkiozis <[email protected]>"]
66
license = "MIT"

plotly_kaleido/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly_kaleido"
3-
version = "0.3.0"
3+
version = "0.8.3"
44
description = "Additional output format support for plotly using Kaleido"
55
authors = ["Ioannis Giagkiozis <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)