diff --git a/CHANGELOG.md b/CHANGELOG.md index 8928a82c..daae6842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -# v2.1.5 +## v2.2.0 + +- Optimized memory usage. [Memory usage tweaks](./docs/memory_usage_tweaks.md); +- `Vary` header is set when WebP detection, client hints or GZip compression are enabled; +- Health check doesn't require `Authorization` header anymore. + +## v2.1.5 - [Sentry support](./docs/configuration.md#error-reporting) (thanks to [@koenpunt](https://github.com/koenpunt)); - Fixed detection of some kind of WebP images; diff --git a/main.go b/main.go index 7006cd12..ce030af6 100644 --- a/main.go +++ b/main.go @@ -11,7 +11,7 @@ import ( _ "net/http/pprof" ) -const version = "2.1.5" +const version = "2.2.0" type ctxKey string