Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
kataras committed Jul 24, 2020
1 parent edce9ac commit 5f379d8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ os:
- linux
- osx
go:
- 1.9.x
- 1.10.x
- 1.11.x
go_import_path: github.com/kataras/go-sessions
- 1.14.x
go_import_path: github.com/kataras/go-sessions/v3
env:
global:
- GO111MODULE=on
install:
- go get -t ./...
script:
Expand All @@ -16,4 +17,4 @@ after_script:
- cd ./_examples
- go get ./...
- go test -v -cover ./...
- cd ../
- cd ../
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,22 @@ sess.
Installation
------------

The only requirement is the [Go Programming Language](https://golang.org/dl), at least v1.7.
The only requirement is the [Go Programming Language](https://golang.org/dl), at least 1.14.

```bash
$ go get -u github.com/kataras/go-sessions
$ go get github.com/kataras/go-sessions/v3
```

**go.mod**

```sh
module your_app

go 1.14

require (
github.com/kataras/go-sessions/v3 v3.2.0
)
```

Features
Expand Down

0 comments on commit 5f379d8

Please sign in to comment.