From 69a48a82b913fb6907aed7ac4ba2851d6b6b743a Mon Sep 17 00:00:00 2001 From: mappu Date: Sat, 25 Jul 2020 13:07:25 +1200 Subject: [PATCH] doc: update README for v1.0.2 release --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f9ad488..e55a854 100644 --- a/README.md +++ b/README.md @@ -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