Skip to content

Commit

Permalink
Upgrade to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Andres Virviescas Santana committed Jan 8, 2019
1 parent df0c1b0 commit d2d807a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Micro-framework to make simple the use of routing and middlewares in [fasthttp](
## Install

```bash
go get github.com/savsgio/atreugo/v5
go get github.com/savsgio/atreugo/v6
```

## Note:
Expand All @@ -27,7 +27,7 @@ package main
import (
"errors"

"github.com/savsgio/atreugo/v5"
"github.com/savsgio/atreugo/v6"
"github.com/valyala/fasthttp"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/jwt_auth_middleware_sever/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/dgrijalva/jwt-go"
"github.com/savsgio/atreugo/v5"
"github.com/savsgio/atreugo/v6"
"github.com/savsgio/go-logger"
"github.com/valyala/fasthttp"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"errors"

"github.com/savsgio/atreugo/v5"
"github.com/savsgio/atreugo/v6"
"github.com/valyala/fasthttp"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/savsgio/atreugo/v5
module github.com/savsgio/atreugo/v6

require (
github.com/fasthttp/router v0.3.1
Expand Down

0 comments on commit d2d807a

Please sign in to comment.