Skip to content

Commit c48e0b4

Browse files
committed
Bump version v0.2.0
1 parent cf9983b commit c48e0b4

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [0.2.0] - 2021-03-03
9+
10+
### Changed
11+
- Stop access to secret resources ([#11](https://github.com/zoetrope/website-operator/pull/11))
12+
813
## [0.1.2] - 2021-03-03
914

1015
### Changed
@@ -48,7 +53,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4853

4954
This is the first public release.
5055

51-
[Unreleased]: https://github.com/zoetrope/website-operator/compare/v0.1.2...HEAD
56+
[Unreleased]: https://github.com/zoetrope/website-operator/compare/v0.2.0...HEAD
57+
[0.2.0]: https://github.com/zoetrope/website-operator/compare/v0.1.2...v0.2.0
5258
[0.1.2]: https://github.com/zoetrope/website-operator/compare/v0.1.1...v0.1.2
5359
[0.1.1]: https://github.com/zoetrope/website-operator/compare/v0.1.0...v0.1.1
5460
[0.1.0]: https://github.com/zoetrope/website-operator/compare/v0.0.3...v0.1.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All resources (Namespace, CustomResourceDefinitions, Deployment and RBACs) are i
1010
You can just install the manifest as follows:
1111

1212
```console
13-
kubectl apply -f https://github.com/zoetrope/website-operator/releases/download/v0.1.2/install.yaml
13+
kubectl apply -f https://github.com/zoetrope/website-operator/releases/download/v0.2.0/install.yaml
1414
```
1515

1616
## Usage

config/release/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ patchesStrategicMerge:
88
- ui.yaml
99
images:
1010
- name: ghcr.io/zoetrope/website-operator
11-
newTag: 0.1.2
11+
newTag: 0.2.0
1212
- name: ghcr.io/zoetrope/website-operator-ui
13-
newTag: 0.1.2
13+
newTag: 0.2.0

ui/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website-operator-ui",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"private": true,
55
"scripts": {
66
"serve": "vue-cli-service serve",

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package website
22

33
const (
44
// Version is the WebSite-Operator version
5-
Version = "0.1.2"
5+
Version = "0.2.0"
66
)

0 commit comments

Comments
 (0)