Skip to content

Commit 2ab92bf

Browse files
authored
update Cargo.toml version for release (#214)
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent 2fe4b1b commit 2ab92bf

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

CHANGELOG.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ 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.9.0] - 2024-xx-xx
6+
## [0.9.0] - 2024-06-29
77
### Added
8-
- [[#207](https://github.com/plotly/plotly,rs/pull/207)] Add `Table` trace.
9-
- [[#181](https://github.com/plotly/plotly,rs/pull/181)] Fix compilation error when mixing the crate with `askama/with-axum` by adding `with-axum` feature.
10-
- [[#180](https://github.com/plotly/plotly.rs/pull/180)] Add setter for `Mapbox::domain`.
11-
- [[#178](https://github.com/plotly/plotly.rs/pull/178)] Fix setter for `Axis::matches` to take string arg.
12-
- [[#166](https://github.com/plotly/plotly.rs/pull/166)] Added subplot example with multiple titles.
13-
- [[#163](https://github.com/plotly/plotly.rs/pull/163)] Added `DensityMapbox`.
14-
- [[#161](https://github.com/plotly/plotly.rs/pull/161)] Added `Axis` `scaleanchor` settter.
15-
- [[#159](https://github.com/plotly/plotly.rs/pull/159)] Make `heat_map` module public to expose `Smoothing enum`.
16-
- [[#157](https://github.com/plotly/plotly.rs/pull/157)] Fix `HeatMap`'s setters for correctly setting `zmin`, `zmax` and `zmin` independent of `Z` input type.
17-
- [[#154](https://github.com/plotly/plotly.rs/pull/154)] Improve ergonomics of `Title` and `LegendGroupTitle` structs: `new` method now takes no arguments as per other structs, whilst a new `with_text()` constructor is added for convenience. Where other structs contain a `Title` (and `LegendGroupTitle`), users can now call the `title()` (and `legend_group_title()`) method with anything that `impl`s `Into<Title>`, viz. `String`, `&String`, `&str` and `Title`.
188
- [[#153](https://github.com/plotly/plotly.rs/pull/153)] Added `LayoutScene`.
9+
- [[#154](https://github.com/plotly/plotly.rs/pull/154)] Improve ergonomics of `Title` and `LegendGroupTitle` structs: `new` method now takes no arguments as per other structs, whilst a new `with_text()` constructor is added for convenience. Where other structs contain a `Title` (and `LegendGroupTitle`), users can now call the `title()` (and `legend_group_title()`) method with anything that `impl`s `Into<Title>`, viz. `String`, `&String`, `&str` and `Title`.
10+
- [[#157](https://github.com/plotly/plotly.rs/pull/157)] Fix `HeatMap`'s setters for correctly setting `zmin`, `zmax` and `zmin` independent of `Z` input type.
11+
- [[#159](https://github.com/plotly/plotly.rs/pull/159)] Make `heat_map` module public to expose `Smoothing enum`.
12+
- [[#161](https://github.com/plotly/plotly.rs/pull/161)] Added `Axis` `scaleanchor` settter.
13+
- [[#163](https://github.com/plotly/plotly.rs/pull/163)] Added `DensityMapbox`.
14+
- [[#166](https://github.com/plotly/plotly.rs/pull/166)] Added subplot example with multiple titles.
15+
- [[#178](https://github.com/plotly/plotly.rs/pull/178)] Fix setter for `Axis::matches` to take string arg.
16+
- [[#180](https://github.com/plotly/plotly.rs/pull/180)] Add setter for `Mapbox::domain`.
17+
- [[#181](https://github.com/plotly/plotly,rs/pull/181)] Fix compilation error when mixing the crate with `askama/with-axum` by adding `with-axum` feature.
18+
- [[#207](https://github.com/plotly/plotly,rs/pull/207)] Add `Table` trace.
1919
- [[#212](https://github.com/plotly/plotly.rs/pull/212)] Update LICENSE
2020

2121
## [0.8.4] - 2023-07-09

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Add this to your `Cargo.toml`:
6161

6262
```toml
6363
[dependencies]
64-
plotly = "0.8.4"
64+
plotly = "0.9.0"
6565
```
6666

6767
## Exporting an Interactive Plot
@@ -103,7 +103,7 @@ To save a plot as a static image, the `kaleido` feature is required:
103103
# Cargo.toml
104104

105105
[dependencies]
106-
plotly = { version = "0.8.4", features = ["kaleido"] }
106+
plotly = { version = "0.9.0", features = ["kaleido"] }
107107
```
108108

109109
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.
@@ -130,7 +130,7 @@ Using `Plotly.rs` in a Wasm-based frontend framework is possible by enabling the
130130
# Cargo.toml
131131

132132
[dependencies]
133-
plotly = { version = "0.8.4", features = ["wasm"] }
133+
plotly = { version = "0.9.0", features = ["wasm"] }
134134
```
135135

136136
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/plotly/plotly.rs) in your project
2222

2323
```toml
2424
[dependencies]
25-
plotly = "0.8.4"
25+
plotly = "0.9.0"
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.8.4", features = ["kaleido"] }
100+
plotly = { version = "0.9.0", 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.4"
3+
version = "0.9.0"
44
description = "A plotting library powered by Plotly.js"
55
authors = ["Ioannis Giagkiozis <[email protected]>"]
66
license = "MIT"
@@ -28,8 +28,8 @@ erased-serde = "0.4"
2828
getrandom = { version = "0.2", features = ["js"], optional = true }
2929
image = { version = "0.25", optional = true }
3030
js-sys = { version = "0.3", optional = true }
31-
plotly_derive = { version = "0.8.4", path = "../plotly_derive" }
32-
plotly_kaleido = { version = "0.8.4", path = "../plotly_kaleido", optional = true }
31+
plotly_derive = { version = "0.9.0", path = "../plotly_derive" }
32+
plotly_kaleido = { version = "0.9.0", path = "../plotly_kaleido", optional = true }
3333
ndarray = { version = "0.15.4", optional = true }
3434
once_cell = "1"
3535
serde = { version = "1.0.132", features = ["derive"] }
@@ -46,5 +46,5 @@ image = "0.25"
4646
itertools = ">=0.10, <0.14"
4747
itertools-num = "0.1.3"
4848
ndarray = "0.15.4"
49-
plotly_kaleido = { version = "0.8.4", path = "../plotly_kaleido" }
49+
plotly_kaleido = { version = "0.9.0", path = "../plotly_kaleido" }
5050
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.4"
3+
version = "0.9.0"
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.4"
3+
version = "0.9.0"
44
description = "Additional output format support for plotly using Kaleido"
55
authors = ["Ioannis Giagkiozis <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)