From cb9babfdbe3cb60463ed1900c479d15a625d4752 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 20 Jun 2018 09:59:53 +0200 Subject: [PATCH 1/2] *: Bump version to v0.3.1 --- Makefile | 2 +- VERSION | 2 +- examples/non-resource-url/README.md | 2 +- examples/non-resource-url/deployment.yaml | 2 +- examples/resource-attributes/README.md | 2 +- examples/resource-attributes/deployment.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index cce0392b0..11135988e 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ build: @$(eval OUTPUT=$(OUT_DIR)/$(GOOS)/$(GOARCH)/$(BIN)) @echo ">> building for $(GOOS)/$(GOARCH) to $(OUTPUT)" @mkdir -p $(OUT_DIR)/$(GOOS)/$(GOARCH) - @CGO_ENABLED=0 go build -i --installsuffix cgo -o $(OUTPUT) $(GITHUB_URL) + @CGO_ENABLED=0 go build --installsuffix cgo -o $(OUTPUT) $(GITHUB_URL) container: docker build -t $(DOCKER_REPO):$(VERSION) . diff --git a/VERSION b/VERSION index 268b0334e..937cd7846 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.3.0 +v0.3.1 diff --git a/examples/non-resource-url/README.md b/examples/non-resource-url/README.md index 8ca437099..020ffbbf7 100644 --- a/examples/non-resource-url/README.md +++ b/examples/non-resource-url/README.md @@ -76,7 +76,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.0 + image: quay.io/brancz/kube-rbac-proxy:v0.3.1 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/non-resource-url/deployment.yaml b/examples/non-resource-url/deployment.yaml index e67ccc0e5..74ffb080e 100644 --- a/examples/non-resource-url/deployment.yaml +++ b/examples/non-resource-url/deployment.yaml @@ -58,7 +58,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.0 + image: quay.io/brancz/kube-rbac-proxy:v0.3.1 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/resource-attributes/README.md b/examples/resource-attributes/README.md index 2cebb0122..e538bf2b5 100644 --- a/examples/resource-attributes/README.md +++ b/examples/resource-attributes/README.md @@ -88,7 +88,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.0 + image: quay.io/brancz/kube-rbac-proxy:v0.3.1 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" diff --git a/examples/resource-attributes/deployment.yaml b/examples/resource-attributes/deployment.yaml index b6d78fcd4..facd83bf8 100644 --- a/examples/resource-attributes/deployment.yaml +++ b/examples/resource-attributes/deployment.yaml @@ -70,7 +70,7 @@ spec: serviceAccountName: kube-rbac-proxy containers: - name: kube-rbac-proxy - image: quay.io/brancz/kube-rbac-proxy:v0.3.0 + image: quay.io/brancz/kube-rbac-proxy:v0.3.1 args: - "--secure-listen-address=0.0.0.0:8443" - "--upstream=http://127.0.0.1:8081/" From 25c22b67eb83646bd1a2026d5f567a3edea8db9a Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 20 Jun 2018 10:00:17 +0200 Subject: [PATCH 2/2] Add changelog entry for v0.3.1 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 639d27937..c49a60c85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.1 / 2018-06-20 + +This release is unmodified code from v0.3.0, but built with latest golang. + +* [BUGFIX] Fix `x509: cannot parse dnsName` in intermediate certificates. + ## 0.3.0 / 2018-03-27 * [FEATURE] Add HTTP/2 support.