Skip to content

Commit

Permalink
Merge pull request #265 from a-hilaly/release/v0.2.1
Browse files Browse the repository at this point in the history
Bump version to v0.2.1
  • Loading branch information
barney-s authored Feb 7, 2025
2 parents 9c8683e + 4dea88e commit 1f200bd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: kro
description: A Helm chart for kro
type: application
version: 0.2.0
appVersion: "0.2.0"
version: 0.2.1
appVersion: "0.2.1"
home: https://kro.run/
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ image:
# The location of the container image repository
repository: ghcr.io/kro-run/kro/controller
# Overrides the image tag whose default is the chart appVersion.
tag: "0.2.0"
tag: "0.2.1"
# Ignores the repository and tag settings and uses the controllers ko entrypoint.
ko: false
# Image pull policy (IfNotPresent: pull the image only if it is not present locally)
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func NewSet(cfg Config) (*Set, error) {
if config.Burst == 0 {
config.Burst = cfg.Burst
}
config.UserAgent = "kro/0.2.0"
config.UserAgent = "kro/0.2.1"

c := &Set{config: config}
if err := c.init(); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/resourcegraphdefinition/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func NewResourceGraphDefinitionReconciler(
allowCRDDeletion: allowCRDDeletion,
crdManager: crdWrapper,
dynamicController: dynamicController,
metadataLabeler: metadata.NewKroMetaLabeler("0.2.0", "kro-pod"),
metadataLabeler: metadata.NewKroMetaLabeler("0.2.1", "kro-pod"),
rgBuilder: builder,
}
}
Expand Down

0 comments on commit 1f200bd

Please sign in to comment.