Skip to content

Commit e6c53a7

Browse files
committed
Release 0.4.2
1 parent 7338b60 commit e6c53a7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Diff for: 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.4.1"
13+
TAG ?= "v0.4.2"
1414
GOOS ?= $(if $(TARGETOS),$(TARGETOS),linux)
1515
GOARCH ?= $(if $(TARGETARCH),$(TARGETARCH),amd64)
1616
GOARM ?= $(TARGETVARIANT)

Diff for: README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,19 @@ As not every Kafka release adds new messages/versions which are relevant to the
4141
| 0.3.1 | to 3.4.0 |
4242
| 0.3.11 | to 3.7.0 |
4343
| 0.3.12 | to 3.9.0 |
44+
| 0.4.2 | to 4.0.0 |
4445

4546
### Install binary release
4647

4748
1. Download the latest release
4849

4950
Linux
5051

51-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.1/kafka-proxy-v0.4.1-linux-amd64.tar.gz | tar xz
52+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.2/kafka-proxy-v0.4.2-linux-amd64.tar.gz | tar xz
5253

5354
macOS
5455

55-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.1/kafka-proxy-v0.4.1-darwin-amd64.tar.gz | tar xz
56+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.4.2/kafka-proxy-v0.4.2-darwin-amd64.tar.gz | tar xz
5657

5758
2. Move the binary in to your PATH.
5859

@@ -70,7 +71,7 @@ Docker images are available on [Docker Hub](https://hub.docker.com/r/grepplabs/k
7071
7172
You can launch a kafka-proxy container for trying it out with
7273
73-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.1 \
74+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.2 \
7475
server \
7576
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
7677
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \
@@ -89,7 +90,7 @@ Docker images with precompiled plugins located in `/opt/kafka-proxy/bin/` are ta
8990
9091
You can launch a kafka-proxy container with auth-ldap plugin for trying it out with
9192
92-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.1-all \
93+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:0.4.2-all \
9394
server \
9495
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
9596
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \

0 commit comments

Comments
 (0)