Skip to content

Commit 42dc17d

Browse files
committed
Bump version number from 0.2.14 to 0.2.15
1 parent b8d115d commit 42dc17d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Plotters latest (?)
3+
## Plotters 0.2.15 (2020-05-26)
44
### Fixed
55

66
- Division by zero with logarithmic coord (issue #143)

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"
3-
version = "0.2.14"
3+
version = "0.2.15"
44
authors = ["Hao Hou <haohou302@gmail.com>"]
55
edition = "2018"
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ To view the source code for each example, please click on the example image.
143143
To use Plotters, you can simply add Plotters into your `Cargo.toml`
144144
```toml
145145
[dependencies]
146-
plotters = "^0.2.14"
146+
plotters = "^0.2.15"
147147
```
148148

149149
And the following code draws a quadratic function. `src/main.rs`,

doc-template/latest_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.14
1+
0.2.15

src/coord/logarithmic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ impl<V: LogScalable> Ranged for LogCoord<V> {
9393
.abs()
9494
.floor()
9595
.max(1.0) as usize;
96-
96+
9797
let tier_2_density = if max_points < tier_1 {
9898
0
9999
} else {

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ including bitmap, vector graph, piston window, GTK/Cairo and WebAssembly.
264264
To use Plotters, you can simply add Plotters into your `Cargo.toml`
265265
```toml
266266
[dependencies]
267-
plotters = "^0.2.14"
267+
plotters = "^0.2.15"
268268
```
269269
270270
And the following code draws a quadratic function. `src/main.rs`,

0 commit comments

Comments
 (0)