Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit b97d930

Browse files
authored
release: 0.8.1 (#1850)
1 parent e730a3a commit b97d930

File tree

6 files changed

+27
-25
lines changed

6 files changed

+27
-25
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,26 @@
44

55
### Changed
66

7-
- etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.
8-
97
### Removed
108

119
### Fixed
1210

13-
- Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.
14-
1511
### Deprecated
1612

1713
### Security
1814

1915

16+
## [Release 0.8.1]
17+
18+
### Changed
19+
20+
- etcd-restore-operator will create a service for itself as the backup storage proxy. Delete the service in deployment yaml.
21+
22+
### Fixed
23+
24+
- Fix etcd-restore-operator wouldn't report error and keep looping if EtcdRestore name is different than EtcdCluster name.
25+
26+
2027
## [Release 0.8.0]
2128

2229
**Important Changes**

doc/dev/release.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,28 @@ Let's say we are releasing $VERSION (e.g. `v1.2.3`) .
66

77
## Create git tag
88

9-
- In version/version.go, bump it to:
10-
```go
11-
// Version = "0.2.2" (without "v" prefix)
12-
Version = "$VERSION"
13-
```
14-
15-
- Bump the version of the operator image in example deployements.
16-
17-
TOOD: release checker should check the version in the deployment.
9+
- Bump up version (e.g. 0.8.0 -> 0.8.1):
10+
```bash
11+
./hack/release/bump_version.sh 0.8.0 0.8.1
12+
```
1813

19-
- Change CHANGELOG.md.
14+
- Update CHANGELOG.md.
2015

2116
- Send a PR. After it's merged, cut a tag:
2217

23-
``` bash
24-
$ git tag $VERSION
25-
$ git push ${upstream_remote} tags/$VERSION
26-
```
18+
```bash
19+
git tag $VERSION
20+
git push ${upstream_remote} tags/$VERSION
21+
```
2722

2823

2924
## Push Image to Quay
3025

3126
- Login to quay.io using docker if haven't:
3227

33-
```bash
34-
$ docker login quay.io
35-
```
28+
```bash
29+
docker login quay.io
30+
```
3631

3732
Follow the prompts.
3833

example/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: etcd-operator
14-
image: quay.io/coreos/etcd-operator:v0.8.0
14+
image: quay.io/coreos/etcd-operator:v0.8.1
1515
command:
1616
- etcd-operator
1717
env:

example/etcd-backup-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: etcd-backup-operator
14-
image: quay.io/coreos/etcd-operator:v0.8.0
14+
image: quay.io/coreos/etcd-operator:v0.8.1
1515
command:
1616
- etcd-backup-operator
1717
env:

example/etcd-restore-operator/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: etcd-restore-operator
16-
image: quay.io/coreos/etcd-operator:v0.8.0
16+
image: quay.io/coreos/etcd-operator:v0.8.1
1717
command:
1818
- etcd-restore-operator
1919
env:

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
package version
1616

1717
var (
18-
Version = "0.8.0+git"
18+
Version = "0.8.1"
1919
GitSHA = "Not provided (use ./build instead of go build)"
2020
)

0 commit comments

Comments
 (0)