Skip to content

Commit deec757

Browse files
committed
Update golang to 1.19
1 parent 9ef8b19 commit deec757

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: go
33
dist: focal
44

55
go:
6-
- "1.17.x"
6+
- "1.19.x"
77

88
env:
99
global:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17-alpine3.14 as builder
1+
FROM golang:1.19-alpine3.15 as builder
22
RUN apk add alpine-sdk ca-certificates
33

44
WORKDIR /go/src/github.com/grepplabs/kafka-proxy

Makefile

Lines changed: 1 addition & 1 deletion
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.2"
13+
TAG ?= "v0.3.3"
1414
GOARCH ?= amd64
1515
GOOS ?= linux
1616

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ As not every Kafka release adds new messages/versions which are relevant to the
4646

4747
Linux
4848

49-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.2/kafka-proxy-v0.3.2-linux-amd64.tar.gz | tar xz
49+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.3/kafka-proxy-v0.3.3-linux-amd64.tar.gz | tar xz
5050

5151
macOS
5252

53-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.2/kafka-proxy-v0.3.2-darwin-amd64.tar.gz | tar xz
53+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.3.3/kafka-proxy-v0.3.3-darwin-amd64.tar.gz | tar xz
5454

5555
2. Move the binary in to your PATH.
5656

@@ -68,7 +68,7 @@ Docker images are available on [Docker Hub](https://hub.docker.com/r/grepplabs/k
6868
6969
You can launch a kafka-proxy container for trying it out with
7070
71-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.3.2 \
71+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.3.3 \
7272
server \
7373
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
7474
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \
@@ -87,7 +87,7 @@ Docker images with precompiled plugins located in `/opt/kafka-proxy/bin/` are ta
8787
8888
You can launch a kafka-proxy container with auth-ldap plugin for trying it out with
8989
90-
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.3.2-all \
90+
docker run --rm -p 30001-30003:30001-30003 grepplabs/kafka-proxy:v0.3.3-all \
9191
server \
9292
--bootstrap-server-mapping "localhost:19092,0.0.0.0:30001" \
9393
--bootstrap-server-mapping "localhost:29092,0.0.0.0:30002" \

0 commit comments

Comments
 (0)