Skip to content

Commit efbf3bc

Browse files
committed
Release 0.2.1 - More deterministic port for dynamic connections, golang 1.14
1 parent 0ddba0d commit efbf3bc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

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

55
go:
6-
- "1.13.x"
6+
- "1.14.x"
77

88
env:
99
global:

Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13 as builder
1+
FROM golang:1.14 as builder
22

33
ARG GOOS=linux
44
ARG GOARCH=amd64

Makefile

Lines changed: 1 addition & 1 deletion
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.2.0"
11+
TAG ?= "v0.2.1"
1212
GOARCH ?= amd64
1313
GOOS ?= linux
1414

README.md

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

3636
Linux
3737

38-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.0/kafka-proxy-v0.2.0-linux-amd64.tar.gz | tar xz
38+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.1/kafka-proxy-v0.2.1-linux-amd64.tar.gz | tar xz
3939

4040
macOS
4141

42-
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.0/kafka-proxy-v0.2.0-darwin-amd64.tar.gz | tar xz
42+
curl -Ls https://github.com/grepplabs/kafka-proxy/releases/download/v0.2.1/kafka-proxy-v0.2.1-darwin-amd64.tar.gz | tar xz
4343

4444
2. Move the binary in to your PATH.
4545

0 commit comments

Comments
 (0)