Skip to content

Commit 6ece1fc

Browse files
authored
Merge pull request #239 from a-hilaly/release/v0.2.0
chore: bump version to 0.2.0
2 parents db09843 + 28a8b29 commit 6ece1fc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ apiVersion: v2
22
name: kro
33
description: A Helm chart for kro
44
type: application
5-
version: 0.1.0
6-
appVersion: "0.1.0"
5+
version: 0.2.0
6+
appVersion: "0.2.0"
77
home: https://kro.run/

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ image:
99
# Image pull policy (IfNotPresent: pull the image only if it is not present locally)
1010
pullPolicy: IfNotPresent
1111
# Overrides the image tag whose default is the chart appVersion.
12-
tag: "0.1.0"
12+
tag: "0.2.0"
1313

1414
# List of secrets for pulling images from a private registry
1515
imagePullSecrets: []

pkg/client/set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func NewSet(cfg Config) (*Set, error) {
6262
if config.Burst == 0 {
6363
config.Burst = cfg.Burst
6464
}
65-
config.UserAgent = "kro/0.1.0"
65+
config.UserAgent = "kro/0.2.0"
6666

6767
c := &Set{config: config}
6868
if err := c.init(); err != nil {

pkg/controller/resourcegraphdefinition/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func NewResourceGraphDefinitionReconciler(
7272
allowCRDDeletion: allowCRDDeletion,
7373
crdManager: crdWrapper,
7474
dynamicController: dynamicController,
75-
metadataLabeler: metadata.NewKroMetaLabeler("0.1.0", "kro-pod"),
75+
metadataLabeler: metadata.NewKroMetaLabeler("0.2.0", "kro-pod"),
7676
rgBuilder: builder,
7777
}
7878
}

0 commit comments

Comments
 (0)