Skip to content

Commit

Permalink
Prepare v1.0.0-beta.1 re-release
Browse files Browse the repository at this point in the history
Signed-off-by: aeneasr <[email protected]>
  • Loading branch information
aeneasr committed Nov 13, 2018
1 parent a5c369a commit 6f53dce
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
- checkout
- setup_remote_docker:
version: 17.10.0-ce
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile -t oryd/keto:$CIRCLE_TAG .
- run: docker build --build-arg git_tag=$(git describe --tags) --build-arg git_commit=$(git rev-parse HEAD) -f Dockerfile -t oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_') .
- run: docker login --username "$DOCKER_USERNAME" --password "$DOCKER_PASSWORD"
- run: docker push oryd/keto:$CIRCLE_TAG
- run: docker push oryd/keto:$(echo $CIRCLE_TAG | tr '+' '_')

publish-docs:
docker:
Expand Down
3 changes: 1 addition & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
# unused-packages = true


[[constraint]]
name = "github.com/ory/metrics-middleware"
revision = "74602156c5c0b9617e12e4663a366516fec6cab4"

[[constraint]]
name = "github.com/akutz/gotil"
version = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion cmd/server/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (
"github.com/ory/keto/role"
"github.com/ory/keto/warden"
"github.com/ory/ladon"
"github.com/ory/metrics-middleware"
metrics "github.com/ory/metrics-middleware"
"github.com/rs/cors"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
Expand Down
1 change: 1 addition & 0 deletions warden/sdk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import (
"github.com/ory/keto/authentication"
keto "github.com/ory/keto/sdk/go/keto/swagger"
"github.com/ory/keto/warden"

//"github.com/ory/ladon"
"github.com/pkg/errors"
//"github.com/stretchr/testify/assert"
Expand Down

0 comments on commit 6f53dce

Please sign in to comment.