diff --git a/CHANGELOG.md b/CHANGELOG.md index b83d14f43..4c75ebf33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project are documented in this file. +## 0.5.1 (2019-02-14) + +Allows skipping the analysis phase to ship changes directly to production + +#### Features + +- Add option to skip the canary analysis [#46](https://github.com/stefanprodan/flagger/pull/46) + +#### Fixes + +- Reject deployment if the pod label selector doesn't match `app: ` [#43](https://github.com/stefanprodan/flagger/pull/43) + ## 0.5.0 (2019-01-30) Track changes in ConfigMaps and Secrets [#37](https://github.com/stefanprodan/flagger/pull/37) diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 912d5a438..782fba454 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: quay.io/stefanprodan/flagger:0.5.0 + image: quay.io/stefanprodan/flagger:0.5.1 imagePullPolicy: Always ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 03649f704..29950a72f 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.5.0 -appVersion: 0.5.0 +version: 0.5.1 +appVersion: 0.5.1 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 61743c585..b1a180316 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: quay.io/stefanprodan/flagger - tag: 0.5.0 + tag: 0.5.1 pullPolicy: IfNotPresent metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090" diff --git a/pkg/version/version.go b/pkg/version/version.go index 805363018..3c12f60f3 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.5.0" +var VERSION = "0.5.1" var REVISION = "unknown"