File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 77* [ Official website] ( https://echo.labstack.com )
88* [ All middleware docs] ( https://echo.labstack.com/docs/category/middleware )
99
10+ ## Versioning
11+
12+ This repository does not use semantic versioning. MAJOR version tracks which Echo version should be used. MINOR version
13+ tracks API changes (possibly backwards incompatible) and PATCH version is incremented for fixes.
14+
15+ > ** Always add at least one integration test in your project.**
16+
17+ For Echo ` v5 ` use ` v5.x.y ` releases.
18+ Minimal needed Echo versions:
19+
20+ * ` v5.x.y ` needs Echo ` v5.0.0+ ` , use ` go get github.com/labstack/echo-contrib@v5 `
21+ * ` v0.18.0 ` needs Echo ` v4.15.0+ ` , use ` go get github.com/labstack/echo-contrib@v0.18.0 `
22+
23+ For ` v0.x.y ` releases the code is located in ` v4 ` branch.
24+
25+
1026# Supported Go version
1127
1228Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ module github.com/labstack/echo-contrib
22
33go 1.24.0
44
5+ retract v0.50.0 // For Echo v5 use `github.com/labstack/echo-contrib@v5` major version release series istead
6+
57require (
68 github.com/casbin/casbin/v2 v2.134.0
79 github.com/gorilla/context v1.1.2
You can’t perform that action at this time.
0 commit comments