Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmyers committed May 12, 2019
1 parent 3209841 commit 27503ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ cd $(1) && go test -v -parallel 128
endef

define cross_build
echo "==> Building $(PKG)_$(1)_$(2) ..."
mkdir -p ./bin;
GOOS=$(1) GOARCH=$(2) CGO_ENABLED=0 go build -o bin/$(PKG)_$(1)_$(2) -a -tags "static_build $(PKG)" -installsuffix $(PKG) ${GO_LDFLAGS_STATIC};
endef
Expand All @@ -42,7 +43,6 @@ fmt: ## Run gofmt over all *.go files

.PHONY: build
build: install-deps ## build Go binary for all GOARCH
@echo "==> Building dynolocker for all GOARCH/GOOS..."
@$(foreach GOARCH,$(GOARCHS),$(foreach GOOS,$(GOOSES),$(call cross_build,$(GOOS),$(GOARCH))))

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.1.0
3 changes: 3 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import:
- package: github.com/urfave/cli
- package: github.com/zencoder/ddbsync
- package: github.com/go-errors/errors
- package: golang.org/x/sys/unix
version: 953cdadca894
- package: github.com/sirupsen/logrus
- package: github.com/aws/aws-sdk-go
subpackages:
- aws
Expand Down

0 comments on commit 27503ab

Please sign in to comment.