Skip to content

Commit aada6f9

Browse files
committed
Fix Echo version number which was not incremented with Release 4.6.2. Now bumped to 4.6.3
1 parent 296c313 commit aada6f9

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## v4.6.3 - 2022-01-10
4+
5+
**Fixes**
6+
7+
* Fixed Echo version number in greeting message which was not incremented to `4.6.2` [#2066](https://github.com/labstack/echo/issues/2066)
8+
9+
10+
## v4.6.2 - 2022-01-08
11+
12+
**Fixes**
13+
14+
* Fixed route containing escaped colon should be matchable but is not matched to request path [#2047](https://github.com/labstack/echo/pull/2047)
15+
* Fixed a problem that returned wrong content-encoding when the gzip compressed content was empty. [#1921](https://github.com/labstack/echo/pull/1921)
16+
* Update (test) dependencies [#2021](https://github.com/labstack/echo/pull/2021)
17+
18+
19+
**Enhancements**
20+
21+
* Add support for configurable target header for the request_id middleware [#2040](https://github.com/labstack/echo/pull/2040)
22+
* Change decompress middleware to use stream decompression instead of buffering [#2018](https://github.com/labstack/echo/pull/2018)
23+
* Documentation updates
24+
25+
326
## v4.6.1 - 2021-09-26
427

528
**Enhancements**

echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const (
246246

247247
const (
248248
// Version of Echo
249-
Version = "4.6.1"
249+
Version = "4.6.3"
250250
website = "https://echo.labstack.com"
251251
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
252252
banner = `

0 commit comments

Comments
 (0)