Skip to content

Commit

Permalink
update minimum version + add explicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
hako committed Mar 13, 2020
1 parent 3c36944 commit 5ffea77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: go

go:
- "1.9"
- "1.10"
- "1.11"
- "1.12"
- "1.13"
- "1.14"
- tip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branca is a secure alternative to JWT, This implementation is written in pure Go

# Requirements

Go 1.9+
Go 1.13+

# Install

Expand Down
4 changes: 2 additions & 2 deletions branca.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
)

const (
version byte = 0xBA // Branca magic byte
base62 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
version byte = 0xBA // Branca magic byte
base62 string = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
)

var (
Expand Down

0 comments on commit 5ffea77

Please sign in to comment.