Skip to content

Commit

Permalink
release 0.5.4 (#248)
Browse files Browse the repository at this point in the history
* release

* including envoy wrapper

* formatting

* gen error, plus missing imports

* minor change
  • Loading branch information
EItanya committed Jan 8, 2019
1 parent 6e5568d commit 93001e0
Show file tree
Hide file tree
Showing 19 changed files with 154 additions and 164 deletions.
13 changes: 0 additions & 13 deletions Gopkg.lock

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

2 changes: 1 addition & 1 deletion Gopkg.toml
Expand Up @@ -50,7 +50,7 @@

[[constraint]]
name = "github.com/solo-io/solo-kit"
version = ">=0.2.11"
version = "0.2.12"

[[constraint]]
name = "github.com/hashicorp/consul"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -203,7 +203,7 @@ release-binaries: $(RELEASE_BINARIES)
.PHONY: release
release: release-binaries
hack/create-release.sh github_api_token=$(GITHUB_TOKEN) owner=$(GH_ORG) repo=$(GH_REPO) tag=v$(VERSION)
@$(foreach BINARY,$(RELEASE_BINARIES),hack/upload-github-release-asset.sh github_api_token=$(GITHUB_TOKEN) owner=solo-io repo=gloo tag=$(VERSION) filename=$(BINARY);)
@$(foreach BINARY,$(RELEASE_BINARIES),hack/upload-github-release-asset.sh github_api_token=$(GITHUB_TOKEN) owner=solo-io repo=gloo tag=v$(VERSION) filename=$(BINARY);)

#----------------------------------------------------------------------------------
# Docker
Expand All @@ -214,7 +214,7 @@ release: release-binaries
#---------

.PHONY: docker docker-push
docker: discovery-docker gateway-docker gloo-docker
docker: discovery-docker gateway-docker gloo-docker gloo-envoy-wrapper-docker
docker-push:
docker push soloio/gateway:$(VERSION) && \
docker push soloio/discovery:$(VERSION) && \
Expand Down
2 changes: 1 addition & 1 deletion generate.go
Expand Up @@ -12,4 +12,4 @@ func main() {
if err := cmd.Run("projects", true, true, nil, nil); err != nil {
log.Fatalf("generate failed!: %v", err)
}
}
}
2 changes: 1 addition & 1 deletion projects/discovery/pkg/fds/discoveries/swagger/swagger.go
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/go-openapi/loads"
"github.com/go-openapi/spec"
"github.com/go-openapi/swag"
multierror "github.com/hashicorp/go-multierror"

"github.com/hashicorp/go-multierror"
"github.com/solo-io/solo-kit/pkg/utils/contextutils"
"github.com/solo-io/solo-kit/pkg/utils/log"

Expand Down
1 change: 1 addition & 0 deletions projects/gateway/pkg/api/v1/api_event_loop.sk.go

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

3 changes: 2 additions & 1 deletion projects/gloo/cli/pkg/cmd/create/upstream.go
@@ -1,10 +1,11 @@
package create

import (
"github.com/solo-io/gloo/projects/gloo/cli/pkg/constants"
"strconv"
"strings"

"github.com/solo-io/gloo/projects/gloo/cli/pkg/constants"

"github.com/solo-io/go-utils/cliutils"

"github.com/solo-io/gloo/projects/gloo/cli/pkg/argsutils"
Expand Down
2 changes: 0 additions & 2 deletions projects/gloo/cli/pkg/cmd/upgrade/cmd.go
Expand Up @@ -11,8 +11,6 @@ import (

"github.com/solo-io/go-utils/cliutils"

"github.com/inconshreveable/go-update"

"github.com/google/go-github/github"
"github.com/solo-io/gloo/projects/gloo/cli/pkg/cmd/options"
"github.com/solo-io/solo-kit/pkg/errors"
Expand Down
1 change: 1 addition & 0 deletions projects/gloo/pkg/api/v1/api_event_loop.sk.go

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

18 changes: 9 additions & 9 deletions projects/gloo/pkg/api/v1/api_event_loop_test.go

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

16 changes: 8 additions & 8 deletions projects/gloo/pkg/api/v1/api_snapshot.sk.go

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

0 comments on commit 93001e0

Please sign in to comment.