Skip to content
This repository has been archived by the owner on Apr 9, 2019. It is now read-only.

Commit

Permalink
Merge pull request #43 from jarias/develop
Browse files Browse the repository at this point in the history
Release version 0.1.0-beta.17
  • Loading branch information
jarias authored Jun 17, 2016
2 parents 38f5a99 + ba1a0f0 commit 03197c3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion application.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/url"
"time"

"github.com/dgrijalva/jwt-go"
"gopkg.in/dgrijalva/jwt-go.v2"
"github.com/nu7hatch/gouuid"
)

Expand Down
2 changes: 1 addition & 1 deletion application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/dgrijalva/jwt-go"
"gopkg.in/dgrijalva/jwt-go.v2"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion authenticators.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"time"

"github.com/dgrijalva/jwt-go"
"gopkg.in/dgrijalva/jwt-go.v2"
)

type AuthResult interface {
Expand Down
2 changes: 1 addition & 1 deletion authenticators_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/dgrijalva/jwt-go"
"gopkg.in/dgrijalva/jwt-go.v2"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion stormpath.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

//Version is the current SDK Version
const version = "0.1.0-beta.16"
const version = "0.1.0-beta.17"

const (
Enabled = "ENABLED"
Expand Down
2 changes: 1 addition & 1 deletion web/cookie.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/dgrijalva/jwt-go"
"gopkg.in/dgrijalva/jwt-go.v2"
"github.com/jarias/stormpath-sdk-go"
)

Expand Down
2 changes: 1 addition & 1 deletion web/oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"golang.org/x/net/context"

"github.com/dgrijalva/jwt-go"
"github.com/jarias/stormpath-sdk-go"
"gopkg.in/dgrijalva/jwt-go.v2"
)

type oauthHandler struct {
Expand Down

0 comments on commit 03197c3

Please sign in to comment.