Skip to content

Commit 44d9d0e

Browse files
committed
v0.8.4
1 parent 75b3d08 commit 44d9d0e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.8.4] - 2023-01-xx
6+
## [0.8.4] - 2023-07-09
77
### Added
88
- [[#143](https://github.com/igiagkiozis/plotly/pull/143)] Widen version range of `askama`.
99

README.md

+3-3
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.3"
58+
plotly = "0.8.4"
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.3", features = ["kaleido"] }
100+
plotly = { version = "0.8.4", 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.3", features = ["wasm"] }
127+
plotly = { version = "0.8.4", 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

+2-2
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.3"
25+
plotly = "0.8.4"
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.3", features = ["kaleido"] }
100+
plotly = { version = "0.8.4", features = ["kaleido"] }
101101
```
102102

103103
## WebAssembly Support

plotly/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotly"
3-
version = "0.8.3"
3+
version = "0.8.4"
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.3", path = "../plotly_derive" }
30-
plotly_kaleido = { version = "0.8.3", path = "../plotly_kaleido", optional = true }
29+
plotly_derive = { version = "0.8.4", path = "../plotly_derive" }
30+
plotly_kaleido = { version = "0.8.4", 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.8.3", path = "../plotly_kaleido" }
47+
plotly_kaleido = { version = "0.8.4", path = "../plotly_kaleido" }
4848
rand_distr = "0.4"

plotly_derive/Cargo.toml

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

plotly_kaleido/Cargo.toml

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

0 commit comments

Comments
 (0)