diff --git a/.cz.yaml b/.cz.yaml index e1f26e6..7e46007 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -5,7 +5,7 @@ commitizen: name: cz_conventional_commits tag_format: $major.$minor.$patch$prerelease update_changelog_on_bump: true - version: 0.8.0 + version: 0.9.0 version_files: - build.gradle:version - charts/locust-k8s-operator/Chart.yaml:appVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index db8d80e..4868806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 0.9.0 (2024-07-03) + +### Feat + +- implement pull secrets in helm chart (#192) +- implement pull secrets in helm chart + +Co-authored-by: Marcial White +- migrate resource creation from `createOrReplace` to `serverSideApply` (#165) + +### Fix + +- Stop Github actions from triggering twice in PRs (#161) + ## 0.8.0 (2023-08-25) ### Feat diff --git a/build.gradle b/build.gradle index 0d5fb1d..7f07ddf 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { } // Automatically managed by commitizen (.cz.yaml) -version = "0.8.0" +version = "0.9.0" group = "com.locust" repositories { diff --git a/charts/locust-k8s-operator/Chart.yaml b/charts/locust-k8s-operator/Chart.yaml index 42e4034..d15065f 100644 --- a/charts/locust-k8s-operator/Chart.yaml +++ b/charts/locust-k8s-operator/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.0 +version: 0.9.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.8.0" +appVersion: "0.9.0"