Skip to content

Commit 0b57a91

Browse files
committed
Bump version to 0.3.6
1 parent 24bf063 commit 0b57a91

File tree

7 files changed

+25
-11
lines changed

7 files changed

+25
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## Plotters 0.3.6 (2024-05-20)
4+
5+
### Added
6+
7+
- Add Clone and PartialEq traits to SeriesLabelPosition and ShapeStyle
8+
- Add function to draw and save an evcxr figure
9+
- Add dotted line style
10+
11+
### Fixed
12+
13+
- Fix bug with infinite size for collinear line segments as coordinates
14+
- Fix overflow in blit_bitmap
15+
- Fix dashed line algorithm
16+
317
## Plotters 0.3.5 (2023-06-16)
418

519
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
221221
The following code shows a minimal example of this.
222222

223223
```text
224-
:dep plotters = { version = "^0.3.5", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
224+
:dep plotters = { version = "^0.3.6", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
225225
extern crate plotters;
226226
use plotters::prelude::*;
227227

plotters-backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotters-backend"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
authors = ["Hao Hou <haohou302@gmail.com>"]
55
edition = "2018"
66
license = "MIT"

plotters-bitmap/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotters-bitmap"
3-
version = "0.3.3"
3+
version = "0.3.6"
44
authors = ["Hao Hou <haohou302@gmail.com>"]
55
edition = "2018"
66
license = "MIT"
@@ -15,7 +15,7 @@ readme = "README.md"
1515
gif = { version = "0.12.0", optional = true }
1616

1717
[dependencies.plotters-backend]
18-
version = "0.3.5"
18+
version = "0.3.6"
1919
path = "../plotters-backend"
2020

2121
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]

plotters-svg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotters-svg"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
authors = ["Hao Hou <haohou302@gmail.com>"]
55
edition = "2018"
66
license = "MIT"
@@ -12,7 +12,7 @@ readme = "README.md"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies.plotters-backend]
15-
version = "0.3.5"
15+
version = "0.3.6"
1616
path = "../plotters-backend"
1717

1818
[dependencies.image]

plotters/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plotters"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
authors = ["Hao Hou <haohou302@gmail.com>"]
55
edition = "2018"
66
license = "MIT"
@@ -17,17 +17,17 @@ num-traits = "0.2.14"
1717
chrono = { version = "0.4.20", optional = true }
1818

1919
[dependencies.plotters-backend]
20-
version = "0.3.5"
20+
version = "0.3.6"
2121
path = "../plotters-backend"
2222

2323
[dependencies.plotters-bitmap]
24-
version = "0.3.3"
24+
version = "0.3.6"
2525
default_features = false
2626
optional = true
2727
path = "../plotters-bitmap"
2828

2929
[dependencies.plotters-svg]
30-
version = "0.3.5"
30+
version = "0.3.6"
3131
optional = true
3232
path = "../plotters-svg"
3333

plotters/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
362362
The following code shows a minimal example of this.
363363
364364
```text
365-
:dep plotters = { version = "^0.3.5", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
365+
:dep plotters = { version = "^0.3.6", default_features = false, features = ["evcxr", "all_series", "all_elements"] }
366366
extern crate plotters;
367367
use plotters::prelude::*;
368368

0 commit comments

Comments
 (0)