From c1d9c05c27a04613887a3cd4e6c175655f1f55f4 Mon Sep 17 00:00:00 2001 From: Teodoro Cook Date: Sat, 1 Jul 2023 07:31:33 -0600 Subject: [PATCH] Bump release version (#43) --- .github/workflows/version.yml | 26 ++++++++++++++++++++++++++ charts/dataplane/Chart.yaml | 4 ++-- pyproject.toml | 2 +- 3 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/version.yml diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml new file mode 100644 index 0000000..1e82f62 --- /dev/null +++ b/.github/workflows/version.yml @@ -0,0 +1,26 @@ +--- +name: version +on: + pull_request: + branches: + - master + +jobs: + version: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Verify Changed files + uses: tj-actions/verify-changed-files@v16 + id: check + with: + files: | + charts/dataplane/Chart.yaml + pyproject.toml + + - name: Fail if version has not been updated + if: steps.check.outputs.files_changed == 'true' + run: exit 1 diff --git a/charts/dataplane/Chart.yaml b/charts/dataplane/Chart.yaml index fd8a28a..6a3a864 100644 --- a/charts/dataplane/Chart.yaml +++ b/charts/dataplane/Chart.yaml @@ -16,10 +16,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.1.14 +version: 0.1.15 # 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.1.14 +appVersion: 0.1.15 diff --git a/pyproject.toml b/pyproject.toml index c5aad87..5466a47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dataplane" -version = "0.1.14" +version = "0.1.15" description = "" authors = ["Teodoro Cook "]