Skip to content

Commit

Permalink
Release Flagger v1.0.0-RC.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Mar 23, 2020
1 parent ce426b5 commit 1d43447
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All notable changes to this project are documented in this file.

## 1.0.0-rc.3 (2020-03-23)

This is a release candidate for Flagger v1.0.0.

The upgrade procedure from 0.x to 1.0 can be found [here](https://docs.flagger.app/dev/upgrade-guide).

#### Features

- Add opt-in finalizers to revert Flagger's mutations on deletion of a canary
[#495](https://github.com/weaveworks/flagger/pull/495)

#### Improvements

- e2e: update end-to-end tests to Contour 1.3.0 and Gloo 1.3.14
[#519](https://github.com/weaveworks/flagger/pull/519)
- build: update Kubernetes packages to 1.17.4
[#516](https://github.com/weaveworks/flagger/pull/516)

#### Fixes

- Preserve node ports on service reconciliation
[#514](https://github.com/weaveworks/flagger/pull/514)

## 1.0.0-rc.2 (2020-03-19)

This is a release candidate for Flagger v1.0.0.
Expand Down
2 changes: 1 addition & 1 deletion artifacts/flagger/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:1.0.0-rc.2
image: weaveworks/flagger:1.0.0-rc.3
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
4 changes: 2 additions & 2 deletions charts/flagger/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.25.0
appVersion: 1.0.0-rc.2
version: 0.26.0
appVersion: 1.0.0-rc.3
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion charts/flagger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

image:
repository: weaveworks/flagger
tag: 1.0.0-rc.2
tag: 1.0.0-rc.3
pullPolicy: IfNotPresent
pullSecret:

Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/flagger/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 1.0.0-rc.2
newTag: 1.0.0-rc.3
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

var VERSION = "1.0.0-rc.2"
var VERSION = "1.0.0-rc.3"
var REVISION = "unknown"

0 comments on commit 1d43447

Please sign in to comment.