diff --git a/CHANGELOG.md b/CHANGELOG.md index 95e54e35..65cd4b77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## master +## 0.6.1 (2018-12-21) "X-mas time is here again!" 🎅 + +- Add HTTP health check endpoint. ([@sponomarev][]) + +Go to `/health` (you can configure the path via `--health-path`) to see the _health_ message. +You can use this endpoint as readiness/liveness check (e.g. for load balancers). + ## 0.6.0 (2018-11-12) - Add force termination support (by sending the second signal). ([@palkan][]) diff --git a/cmd/anycable-go/main.go b/cmd/anycable-go/main.go index 169b192e..0f018418 100644 --- a/cmd/anycable-go/main.go +++ b/cmd/anycable-go/main.go @@ -28,7 +28,7 @@ var ( func init() { if version == "" { - version = "0.6.0-unknown" + version = "0.6.1-unknown" } }