From 4e6603e3d09b3fb460f8c4bf2344bbb2731bb72b Mon Sep 17 00:00:00 2001 From: Shyukri Shyukriev Date: Thu, 1 Aug 2024 13:12:55 +0300 Subject: [PATCH] Prepare release 2.40.2 --- CHANGES.rst | 5 ++++- deploy/charts/crate-operator-crds/Chart.yaml | 4 ++-- deploy/charts/crate-operator/Chart.yaml | 6 +++--- devtools/bumpversion.sh | 11 ++++++----- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 799661c2..3f61287e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,11 @@ Changelog Unreleased ---------- -* Bumped version of the JMX Exporter to ``1.1.0`` +2.40.2 (2024-08-01) +------------------- + +* Bumped version of the JMX Exporter to ``1.1.0`` 2.40.1 (2024-07-24) ------------------- diff --git a/deploy/charts/crate-operator-crds/Chart.yaml b/deploy/charts/crate-operator-crds/Chart.yaml index 60ea7b7d..763a8756 100644 --- a/deploy/charts/crate-operator-crds/Chart.yaml +++ b/deploy/charts/crate-operator-crds/Chart.yaml @@ -6,13 +6,13 @@ 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: 2.40.1 +version: 2.40.2 # 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: "2.40.1" +appVersion: "2.40.2" maintainers: - name: Crate.io \ No newline at end of file diff --git a/deploy/charts/crate-operator/Chart.yaml b/deploy/charts/crate-operator/Chart.yaml index 0ead98e4..a64424d0 100644 --- a/deploy/charts/crate-operator/Chart.yaml +++ b/deploy/charts/crate-operator/Chart.yaml @@ -6,17 +6,17 @@ 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: 2.40.1 +version: 2.40.2 # 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: "2.40.1" +appVersion: "2.40.2" dependencies: - name: crate-operator-crds - version: 2.40.1 + version: 2.40.2 repository: "file://../crate-operator-crds" condition: crate-operator-crds.enabled diff --git a/devtools/bumpversion.sh b/devtools/bumpversion.sh index 6f0cc19a..c7a337a0 100755 --- a/devtools/bumpversion.sh +++ b/devtools/bumpversion.sh @@ -28,20 +28,21 @@ if [ "$BRANCH" != "release/$VERSION" ]; then exit 1 fi +set -x print_info "Incrementing crate-operator Helm Chart to version '$VERSION'" # Chart version -sed -i "s/^version:.*$/version: $VERSION/" deploy/charts/crate-operator/Chart.yaml +sed -i '' "s/^version:.*$/version: ${VERSION}/" deploy/charts/crate-operator/Chart.yaml # App version -sed -i "s/^appVersion:.*$/appVersion: \"$VERSION\"/" deploy/charts/crate-operator/Chart.yaml +sed -i '' "s/^appVersion:.*$/appVersion: \"$VERSION\"/" deploy/charts/crate-operator/Chart.yaml # Dependency version -sed -i "s/^ version:.*$/ version: $VERSION/" deploy/charts/crate-operator/Chart.yaml +sed -i '' "s/^ version:.*$/ version: $VERSION/" deploy/charts/crate-operator/Chart.yaml print_info "Incrementing crate-operator-crds Helm Chart to version '$VERSION'" # Chart version -sed -i "s/^version:.*$/version: $VERSION/" deploy/charts/crate-operator-crds/Chart.yaml +sed -i '' "s/^version:.*$/version: $VERSION/" deploy/charts/crate-operator-crds/Chart.yaml # App version -sed -i "s/^appVersion:.*$/appVersion: \"$VERSION\"/" deploy/charts/crate-operator-crds/Chart.yaml +sed -i '' "s/^appVersion:.*$/appVersion: \"$VERSION\"/" deploy/charts/crate-operator-crds/Chart.yaml print_info "Done. ✨"