Skip to content

Commit 1c028d5

Browse files
committed
Prepare release
1 parent 823a3c8 commit 1c028d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
1010
GOPKGS = $(shell go list ./... | grep -v /vendor/)
1111
BUILD_FLAGS ?=
1212
LDFLAGS ?= -X github.com/grepplabs/kafka-proxy/config.Version=$(VERSION) -w -s
13-
TAG ?= "v0.3.12"
13+
TAG ?= "v0.4.0"
1414
GOOS ?= $(if $(TARGETOS),$(TARGETOS),linux)
1515
GOARCH ?= $(if $(TARGETARCH),$(TARGETARCH),amd64)
1616
GOARM ?= $(TARGETVARIANT)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ As not every Kafka release adds new messages/versions which are relevant to the
4848

4949
Linux
5050

51-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.12/kafka-proxy-v0.3.12-linux-amd64.tar.gz | tar xz
51+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.0/kafka-proxy-v0.4.0-linux-amd64.tar.gz | tar xz
5252

5353
macOS
5454

55-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.12/kafka-proxy-v0.3.12-darwin-amd64.tar.gz | tar xz
55+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.0/kafka-proxy-v0.4.0-darwin-amd64.tar.gz | tar xz
5656

5757
2. Move the binary in to your PATH.
5858

@@ -70,7 +70,7 @@ Docker images are available on [Docker Hub](https://hub.docker.com/r/grepplabs/k
7070
7171
You can launch a kafka-proxy container for trying it out with
7272
73-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.3.12 \
73+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.0 \
7474
server \
7575
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
7676
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \
@@ -89,7 +89,7 @@ Docker images with precompiled plugins located in `/opt/kafka-proxy/bin/` are ta
8989
9090
You can launch a kafka-proxy container with auth-ldap plugin for trying it out with
9191
92-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.3.12-all \
92+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.0-all \
9393
server \
9494
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
9595
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \

0 commit comments

Comments
 (0)