Skip to content

Commit dae538f

Browse files
author
Zachary Graziano
committed
Setting version to 0.6.0
1 parent 09bdd57 commit dae538f

4 files changed

Lines changed: 21 additions & 4 deletions

File tree

CHANGELOG.md

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

33
## [Changes since last release]
44

5+
## [0.6.0] - 2018-10-05
6+
### Added
7+
- "plot composers" CartesianPlot and BinnedPlot for easier creation of custom plots (these are experimental).
8+
- GradientFill drawable which renders Gradient2d's (Linear and Radial).
9+
- more functionality to the base Color type.
10+
- Datum2d which allows for additional data to be passed along to point renderer.
11+
- Gradient legend that uses gradient fill
12+
- Custom methods to some renderers for easier definition
13+
# Changed
14+
- Parallel value array api for scatter plot removed, Datum2d is provided directly to the point renderer. (_breaking_)
15+
- Scatter plot now takes an xBoundsBuffer and yBoundsBuffer instead of a single bound buffer. (_breaking_)
16+
- New gradient drawables that have been serialized will not be handled by older versions of EvilPlot. (_breaking_)
17+
### Fixed
18+
- HSLA is now backed by Doubles so conversions are less lossy.
19+
- Tests for clipping now verify ordering
20+
521
## [0.5.0] - 2018-09-21
622
### Added
723
- `ComponentGroup` for combining plot components
@@ -84,7 +100,8 @@ correcting previously incorrect extent calculation.
84100
- Applying "bound buffers" to plots is no longer part of the default theme.
85101
- The default number of ticks on continuous axes has been decreased.
86102

87-
[Changes since last release]: https://github.com/cibotech/evilplot/compare/v0.5.0...HEAD
103+
[Changes since last release]: https://github.com/cibotech/evilplot/compare/v0.6.0...HEAD
104+
[0.6.0]: https://github.com/cibotech/evilplot/compare/v0.5.0...v0.6.0
88105
[0.5.0]: https://github.com/cibotech/evilplot/compare/v0.4.1...v0.5.0
89106
[0.4.1]: https://github.com/cibotech/evilplot/compare/v0.4.0...v0.4.1
90107
[0.4.0]: https://github.com/cibotech/evilplot/compare/v0.3.4...v0.4.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.5.0" // Use %%% instead of %% if you're using ScalaJS
14+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.0" // 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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.5.0" // Use %%% instead of %% if you're using ScalaJS
11+
libraryDependencies += "com.cibo" %% "evilplot" % "0.6.0" // 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

version.sbt

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

0 commit comments

Comments
 (0)