Skip to content

Commit

Permalink
Bump version to 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronErhardt committed May 20, 2024
1 parent 24bf063 commit 8e8cdfa
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Plotters 0.3.6 (2024-05-20)

### Added

- Add Clone and PartialEq traits to SeriesLabelPosition and ShapeStyle
- Add function to draw and save an evcxr figure
- Add dotted line style

### Fixed

- Fix bug with infinite size for collinear line segments as coordinates
- Fix overflow in blit_bitmap
- Fix dashed line algorithm

## Plotters 0.3.5 (2023-06-16)

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
The following code shows a minimal example of this.

```text
:dep plotters = { version = "^0.3.5", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
:dep plotters = { version = "^0.3.6", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
extern crate plotters;
use plotters::prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion plotters-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plotters-backend"
version = "0.3.5"
version = "0.3.6"
authors = ["Hao Hou <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion plotters-bitmap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ readme = "README.md"
gif = { version = "0.12.0", optional = true }

[dependencies.plotters-backend]
version = "0.3.5"
version = "0.3.6"
path = "../plotters-backend"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]
Expand Down
4 changes: 2 additions & 2 deletions plotters-svg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plotters-svg"
version = "0.3.5"
version = "0.3.6"
authors = ["Hao Hou <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies.plotters-backend]
version = "0.3.5"
version = "0.3.6"
path = "../plotters-backend"

[dependencies.image]
Expand Down
6 changes: 3 additions & 3 deletions plotters/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plotters"
version = "0.3.5"
version = "0.3.6"
authors = ["Hao Hou <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -17,7 +17,7 @@ num-traits = "0.2.14"
chrono = { version = "0.4.20", optional = true }

[dependencies.plotters-backend]
version = "0.3.5"
version = "0.3.6"
path = "../plotters-backend"

[dependencies.plotters-bitmap]
Expand All @@ -27,7 +27,7 @@ optional = true
path = "../plotters-bitmap"

[dependencies.plotters-svg]
version = "0.3.5"
version = "0.3.6"
optional = true
path = "../plotters-svg"

Expand Down
2 changes: 1 addition & 1 deletion plotters/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
The following code shows a minimal example of this.
```text
:dep plotters = { version = "^0.3.5", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
:dep plotters = { version = "^0.3.6", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
extern crate plotters;
use plotters::prelude::*;
Expand Down

0 comments on commit 8e8cdfa

Please sign in to comment.