CHANGELOG.md 1.7 KB
Newer Older
A
Anthony N. Simon 已提交
1 2
# Changelog

A
Anthony N. Simon 已提交
3 4 5
## next
- 

A
Anthony Najjar Simon 已提交
6
## 0.13.0
A
Anthony Najjar Simon 已提交
7
- [PR-85:](https://github.com/anthonynsimon/bild/pull/85) Up to 20% less allocations and 90% less bytes allocated.
A
Anthony N. Simon 已提交
8
- Minor documentation improvements.
A
Anthony Najjar Simon 已提交
9

A
Anthony Najjar Simon 已提交
10
## 0.12.0
A
Anthony Najjar Simon 已提交
11
- [PR-74:](https://github.com/anthonynsimon/bild/pull/74) Add Perlin noise function
A
Anthony N. Simon 已提交
12
- [PR-77:](https://github.com/anthonynsimon/bild/pull/77) Performance improvements for the image adjustment function
A
Anthony Najjar Simon 已提交
13 14 15
- [PR-81:](https://github.com/anthonynsimon/bild/pull/81) Make blend() exported to allow for custom blending implementations
- [PR-82:](https://github.com/anthonynsimon/bild/pull/82) Fix rotate panic
- Minor additional fixes and documentation improvements.
A
Anthony N. Simon 已提交
16

A
Anthony Najjar Simon 已提交
17
## 0.11.1
A
Anthony Najjar Simon 已提交
18
- [PR-71:](https://github.com/anthonynsimon/bild/pull/71) Gaussian blur is up to ~20x faster.
A
Anthony Najjar Simon 已提交
19

A
Anthony N. Simon 已提交
20 21 22 23
## 0.11.0
- bild now comes with a built-in CLI
- Added extract multiple channels functionality
- Minor fixes and performance improvements
A
Anthony N. Simon 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

## 0.10.0
- New feature effect.UnsharpMask
- Changed paint.FloodFill fuzz parameter to tolerance based. This is a - breaking change.


## 0.9.0
- New feature paint.FloodFill
- New feature transform.Translate

## 0.8.7
- Significant performance optimisations for Resize, Rotate, Convolve and Spatial Filtering functions. Most effects and blurs are indirectly benefited from this.

## 0.7.0
- New feature transform.Shear
- New feature adjust.Hue and adjust.Saturation
- New features effect.Dilate and effect.Erode

## 0.6.0
- New noise package, now you can generate Binary, Uniform and Gaussian noise (colored and monochrome).

## 0.5.0
- Major code refactor. Breaking changes as all APIs have been decentralised into sub-packages.

## 0.4.0
- Initial open source release.
A
Anthony N. Simon 已提交
50
- Release before major code refactor. Package bild contains all APIs in this release.