Skip to content

Commit

Permalink
Release 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
everesio committed Oct 12, 2020
1 parent d1f92e4 commit 38062e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
GOPKGS = $(shell go list ./... | grep -v /vendor/)
BUILD_FLAGS ?=
LDFLAGS ?= -X github.com/grepplabs/kafka-proxy/config.Version=$(VERSION) -w -s
TAG ?= "v0.2.7"
TAG ?= "v0.2.8"
GOARCH ?= amd64
GOOS ?= linux

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ See:

Linux

curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.7/kafka-proxy-v0.2.7-linux-amd64.tar.gz | tar xz
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.8/kafka-proxy-v0.2.8-linux-amd64.tar.gz | tar xz

macOS

curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.7/kafka-proxy-v0.2.7-darwin-amd64.tar.gz | tar xz
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.8/kafka-proxy-v0.2.8-darwin-amd64.tar.gz | tar xz

2. Move the binary in to your PATH.

Expand All @@ -58,7 +58,7 @@ Docker images are available on [Docker Hub](https://hub.docker.com/r/grepplabs/k
You can launch a kafka-proxy container for trying it out with
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.2.7 \
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.2.8 \
server \
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \
Expand All @@ -77,7 +77,7 @@ Docker images with precompiled plugins located in `/opt/kafka-proxy/bin/` are ta
You can launch a kafka-proxy container with auth-ldap plugin for trying it out with
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.2.7-all \
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.2.8-all \
server \
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \
Expand Down

0 comments on commit 38062e1

Please sign in to comment.