Skip to content

Commit

Permalink
bump helm minor-version from 0.2.3 to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mriedmann committed Jul 24, 2022
1 parent a55653f commit 7572bdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pwd = $(shell pwd)
version = $(shell poetry version -s)
short_version = $(shell poetry version -s | cut -d'+' -d'-' -f1)
helm_version = $(shell yq r helm/pipecheck/Chart.yaml 'version')
helm_short_version = $(shell yq r helm/pipecheck/Chart.yaml 'version' | cut -d'+' -d'-' -f1)
helm_version = $(shell cat helm/pipecheck/Chart.yaml | yq '.version')
helm_short_version = $(shell cat helm/pipecheck/Chart.yaml | yq '.version' | cut -d'+' -d'-' -f1)

init:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
Expand Down
2 changes: 1 addition & 1 deletion helm/pipecheck/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.2.3
version: 0.2.4

# 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
Expand Down

0 comments on commit 7572bdc

Please sign in to comment.