Skip to content

Commit 39bad08

Browse files
author
Dave Hahn
committed
Setting version to 0.6.2
1 parent edf9c41 commit 39bad08

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Changes since last release]
44

5+
## [0.6.2] - 2018-12-05
6+
### Added
7+
#Changed
8+
### Fixed
9+
- evilplot-math asset wasn't present in 2.12 version of 0.6.1 release
10+
511
## [0.6.1] - 2018-11-28
612
### Added
713
- native jvm matrix multiply
@@ -109,6 +115,7 @@ correcting previously incorrect extent calculation.
109115
- The default number of ticks on continuous axes has been decreased.
110116

111117
[Changes since last release]: https://github.com/cibotech/evilplot/compare/v0.6.1...HEAD
118+
[0.6.2]: https://github.com/cibotech/evilplot/compare/v0.6.1...v0.6.2
112119
[0.6.1]: https://github.com/cibotech/evilplot/compare/v0.6.0...v0.6.1
113120
[0.6.0]: https://github.com/cibotech/evilplot/compare/v0.5.0...v0.6.0
114121
[0.5.0]: https://github.com/cibotech/evilplot/compare/v0.4.1...v0.5.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Documentation for EvilPlot is available [here](https://cibotech.github.io/evilpl
1111
Add EvilPlot to your build with:
1212
```scala
1313
resolvers += Resolver.bintrayRepo("cibotech", "public")
14-
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.1" // Use %%% instead of %% if you're using ScalaJS
14+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.2" // Use %%% instead of %% if you're using ScalaJS
1515
```
1616
Take a look at the full [getting started guide](https://cibotech.github.io/evilplot/getting-started.html). EvilPlot is published for Scala 2.11 and Scala 2.12.
1717

docs/src/main/tut/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ position: 2
88
To get going with EvilPlot, you'll need to add it to your build. EvilPlot is published for Scala 2.11 and 2.12.
99
```scala
1010
resolvers += Resolver.bintrayRepo("cibotech", "public")
11-
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.1" // Use %%% instead of %% if you're using ScalaJS
11+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.2" // Use %%% instead of %% if you're using ScalaJS
1212
```
1313

1414
Throughout the getting started guide, we'll assume you're working either in a Scala REPL or the [Ammonite](http://ammonite.io). We publish an additional
1515
utility to make using EvilPlot from the REPL easier. To import it, add:
1616

1717
```scala
1818
resolvers += Resolver.bintrayRepo("cibotech", "public")
19-
"com.cibo" %% "evilplot-repl" % "0.6.1"
19+
"com.cibo" %% "evilplot-repl" % "0.6.2"
2020
```
2121
to your build.
2222

@@ -26,7 +26,7 @@ Or, if you're using Ammonite, run
2626
interp.repositories() ++= Seq(
2727
coursier.MavenRepository("https://dl.bintray.com/cibotech/public")
2828
)
29-
import $ivy.`com.cibo::evilplot-repl:0.6.1`
29+
import $ivy.`com.cibo::evilplot-repl:0.6.2`
3030
```
3131

3232
prior to beginning.

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.6.2-SNAPSHOT"
1+
version in ThisBuild := "0.6.2"

0 commit comments

Comments
 (0)