Skip to content

Commit

Permalink
Prepare release 2.40.2
Browse files Browse the repository at this point in the history
  • Loading branch information
goat-ssh committed Aug 1, 2024
1 parent c987d04 commit 4e6603e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-------------------
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/crate-operator-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions deploy/charts/crate-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 6 additions & 5 deletions devtools/bumpversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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. ✨"

0 comments on commit 4e6603e

Please sign in to comment.