Skip to content

Commit e420201

Browse files
committed
Release v0.0.3
1 parent 142f07a commit e420201

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
88
GOPKGS = $(shell go list ./... | grep -v /vendor/)
99
BUILD_FLAGS ?=
1010
LDFLAGS ?= -X github.com/grepplabs/kafka-proxy/config.Version=$(VERSION) -w -s
11-
TAG ?= "v0.0.2"
11+
TAG ?= "v0.0.3"
1212

1313
PLATFORM ?= $(shell uname -s)
1414
ifeq ($(PLATFORM), Darwin)
@@ -69,8 +69,11 @@ build.docker-build.osx:
6969
docker rm $$buildContainer ;\
7070
docker rmi $$buildContainerName ;\
7171

72-
release: clean build.linux build/osx/$(BINARY)
73-
git tag $(TAG) && git push --tags
72+
tag:
73+
git tag $(TAG)
74+
75+
release: clean build.linux build.osx
76+
git push origin $(TAG)
7477
github-release release -u grepplabs -r $(BINARY) --tag $(TAG)
7578
github-release upload -u grepplabs -r $(BINARY) -t $(TAG) -f build/linux/$(BINARY) -n linux/amd64/$(BINARY)
7679
github-release upload -u grepplabs -r $(BINARY) -t $(TAG) -f build/osx/$(BINARY) -n darwin/amd64/$(BINARY)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ See:
3434

3535
Linux
3636

37-
curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.2/linux.amd64.kafka-proxy
37+
curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.3/linux.amd64.kafka-proxy
3838

3939
macOS
4040

41-
curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.2/darwin.amd64.kafka-proxy
41+
curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.3/darwin.amd64.kafka-proxy
4242

4343
2. Make the kafka-proxy binary executable
4444

0 commit comments

Comments
 (0)