Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Gherghescu <[email protected]>
  • Loading branch information
andrei-ng committed Jun 25, 2024
1 parent 0ea64ff commit 12d983f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
- [[#163](https://github.com/plotly/plotly.rs/pull/163)] Added `DensityMapbox`.
- [[#161](https://github.com/plotly/plotly.rs/pull/161)] Added `Axis` `scaleanchor` settter.
- [[#159](https://github.com/plotly/plotly.rs/pull/159)] Make `heat_map` module public to expose `Smoothing enum`.
- [[#153](https://github.com/plotly/plotly.rs/pull/153)] Added `LayoutScene`.
- [[#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.
- [[#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`.
- [[#153](https://github.com/plotly/plotly.rs/pull/153)] Added `LayoutScene`.

## [0.8.4] - 2023-07-09
### Added
Expand Down
12 changes: 6 additions & 6 deletions plotly/src/plot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -652,8 +652,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[cfg(not(all(target_os = "windows", target_os = "macos")))]
#[cfg(feature = "kaleido")]
fn test_save_to_png() {
let plot = create_test_plot();
Expand All @@ -665,8 +665,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[cfg(not(all(target_os = "windows", target_os = "macos")))]
#[cfg(feature = "kaleido")]
fn test_save_to_jpeg() {
let plot = create_test_plot();
Expand All @@ -678,8 +678,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[cfg(not(all(target_os = "windows", target_os = "macos")))]
#[cfg(feature = "kaleido")]
fn test_save_to_svg() {
let plot = create_test_plot();
Expand All @@ -691,8 +691,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[ignore]
#[cfg(feature = "kaleido")]
fn test_save_to_eps() {
let plot = create_test_plot();
Expand All @@ -704,8 +704,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[cfg(not(all(target_os = "windows", target_os = "macos")))]
#[cfg(feature = "kaleido")]
fn test_save_to_pdf() {
let plot = create_test_plot();
Expand All @@ -717,8 +717,8 @@ mod tests {
}

// This seems to fail unpredictably on MacOs.
#[cfg(target_os = "linux")]
#[test]
#[cfg(not(all(target_os = "windows", target_os = "macos")))]
#[cfg(feature = "kaleido")]
fn test_save_to_webp() {
let plot = create_test_plot();
Expand Down

0 comments on commit 12d983f

Please sign in to comment.