Skip to content

Commit 44a1efb

Browse files
author
Dave Hahn
committed
Setting version to 0.6.1
1 parent a85a2a8 commit 44a1efb

4 files changed

Lines changed: 15 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Changes since last release]
44

5+
## [0.6.1] - 2018-11-28
6+
### Added
7+
- native jvm matrix multiply
8+
#Changed
9+
- faster `group` rendering
10+
### Fixed
11+
- range and NaN handling in colorbar and gradient
12+
513
## [0.6.0] - 2018-10-05
614
### Added
715
- "plot composers" CartesianPlot and BinnedPlot for easier creation of custom plots (these are experimental).
@@ -100,7 +108,8 @@ correcting previously incorrect extent calculation.
100108
- Applying "bound buffers" to plots is no longer part of the default theme.
101109
- The default number of ticks on continuous axes has been decreased.
102110

103-
[Changes since last release]: https://github.com/cibotech/evilplot/compare/v0.6.0...HEAD
111+
[Changes since last release]: https://github.com/cibotech/evilplot/compare/v0.6.1...HEAD
112+
[0.6.1]: https://github.com/cibotech/evilplot/compare/v0.6.0...v0.6.1
104113
[0.6.0]: https://github.com/cibotech/evilplot/compare/v0.5.0...v0.6.0
105114
[0.5.0]: https://github.com/cibotech/evilplot/compare/v0.4.1...v0.5.0
106115
[0.4.1]: https://github.com/cibotech/evilplot/compare/v0.4.0...v0.4.1

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.0" // Use %%% instead of %% if you're using ScalaJS
14+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.1" // 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.0" // Use %%% instead of %% if you're using ScalaJS
11+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.1" // 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.5.0"
19+
"com.cibo" %% "evilplot-repl" % "0.6.1"
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.5.0`
29+
import $ivy.`com.cibo::evilplot-repl:0.6.1`
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.1-SNAPSHOT"
1+
version in ThisBuild := "0.6.1"

0 commit comments

Comments
 (0)