|
2 | 2 |
|
3 | 3 | ## [Changes since last release] |
4 | 4 |
|
| 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 | + |
5 | 21 | ## [0.5.0] - 2018-09-21 |
6 | 22 | ### Added |
7 | 23 | - `ComponentGroup` for combining plot components |
@@ -84,7 +100,8 @@ correcting previously incorrect extent calculation. |
84 | 100 | - Applying "bound buffers" to plots is no longer part of the default theme. |
85 | 101 | - The default number of ticks on continuous axes has been decreased. |
86 | 102 |
|
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 |
88 | 105 | [0.5.0]: https://github.com/cibotech/evilplot/compare/v0.4.1...v0.5.0 |
89 | 106 | [0.4.1]: https://github.com/cibotech/evilplot/compare/v0.4.0...v0.4.1 |
90 | 107 | [0.4.0]: https://github.com/cibotech/evilplot/compare/v0.3.4...v0.4.0 |
|
0 commit comments