doc: update README for v1.0.2 release

This commit is contained in:
mappu 2020-07-25 13:07:25 +12:00
parent 378d5117f6
commit 69a48a82b9
1 changed files with 6 additions and 1 deletions

View File

@ -7,7 +7,7 @@ A thumbnailing library for Go.
- Optional LRU cache of recent thumbnails for performance
- Sampling algorithms: Nearest-neighbour, Bilinear (fast), Bilinear (accurate), Bicubic (Catmull-Rom)
- Scaling algorithms: Fit inside, Fit outside, Stretch
- Output formats: JPG, PNG, Quantised/lossy PNG (via `go-imagequant`), BMP
- Output formats: JPG, PNG, Quantised/lossy PNG (via `go-imagequant` if CGO is available), BMP
A standalone binary `mkthumb` is provided as a sample utility.
@ -15,6 +15,11 @@ This package can be installed via go get: `go get code.ivysaur.me/thumbnail`
## Changelog
2020-07-25 1.0.2
- Automatically build pngquant support if CGO is available
- Remove vendor directory, rely more heavily on Go Modules
- Update module dependencies
2018-12-31 1.0.1
- Convert to Go Modules
- Update vendored dependencies