Browse Source

Bump version; Update changelog

DarthSim 6 years ago
parent
commit
ae3d6f7a50
2 changed files with 8 additions and 2 deletions
  1. 7 1
      CHANGELOG.md
  2. 1 1
      main.go

+ 7 - 1
CHANGELOG.md

@@ -1,6 +1,12 @@
 # Changelog
 # 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));
 - [Sentry support](./docs/configuration.md#error-reporting) (thanks to [@koenpunt](https://github.com/koenpunt));
 - Fixed detection of some kind of WebP images;
 - Fixed detection of some kind of WebP images;

+ 1 - 1
main.go

@@ -11,7 +11,7 @@ import (
 	_ "net/http/pprof"
 	_ "net/http/pprof"
 )
 )
 
 
-const version = "2.1.5"
+const version = "2.2.0"
 
 
 type ctxKey string
 type ctxKey string