Skip to content

Commit 2d95e90

Browse files
committed
Bump version number from 0.2.12 to 0.2.13
1 parent 03f5b07 commit 2d95e90

File tree

5 files changed

+6
-6
lines changed

5 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.13 (2020-05-04)
44
### Added
55

66
- Line width is supported for SVG

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.12"
3+
version = "0.2.13"
44
authors = ["Hao Hou <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
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.12"
146+
plotters = "^0.2.13"
147147
```
148148

149149
And the following code draws a quadratic function. `src/main.rs`,
@@ -191,7 +191,7 @@ The feature `evcxr` should be enabled when including Plotters to Jupyter Noteboo
191191
The following code shows a minimal example of this.
192192

193193
```text
194-
:dep plotters = { git = "https://github.com/38/plotters", default_features = false, features = ["evcxr", "line_series"] }
194+
:dep plotters = { git = "https://github.com/38/plotters", default_features = false, features = ["evcxr"] }
195195
extern crate plotters;
196196
use plotters::prelude::*;
197197

doc-template/latest_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.12
1+
0.2.13

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.12"
267+
plotters = "^0.2.13"
268268
```
269269
270270
And the following code draws a quadratic function. `src/main.rs`,

0 commit comments

Comments
 (0)