diff --git a/CHANGELOG.md b/CHANGELOG.md index 52449609d..9b06b433f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v5.0.1 - 2026-01-28 + +* Panic MW: will now return a custom PanicStackError with stack trace by @aldas in https://github.com/labstack/echo/pull/2871 +* Docs: add missing err parameter to DenyHandler example by @cgalibern in https://github.com/labstack/echo/pull/2878 +* improve: improve websocket checks in IsWebSocket() [per RFC 6455] by @raju-mechatronics in https://github.com/labstack/echo/pull/2875 +* fix: Context.Json() should not send status code before serialization is complete by @aldas in https://github.com/labstack/echo/pull/2877 + + ## v5.0.0 - 2026-01-18 Echo `v5` is maintenance release with **major breaking changes** diff --git a/version.go b/version.go index 231c93287..b06982d48 100644 --- a/version.go +++ b/version.go @@ -5,5 +5,5 @@ package echo const ( // Version of Echo - Version = "5.0.0" + Version = "5.0.1" )