diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bc7778163..eea4f19d3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -208,11 +208,12 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - - name: Commit version bump + - name: Commit and push version bump if: ${{ (!inputs.dry-run) && (inputs.bump-version) }} run: | git add package.json projects/dashboard-core/package.json helm/Chart.yaml helm/values.yaml helm/README.md git commit -m "chore(release): v${{ inputs.version }}" + git push - name: Create GitHub Release if: ${{ !inputs.dry-run }} diff --git a/helm/Chart.yaml b/helm/Chart.yaml index d9909640b..61d4e0afd 100644 --- a/helm/Chart.yaml +++ b/helm/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.3.1 +version: 0.4.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.3.1" +appVersion: "0.4.0" diff --git a/helm/values.yaml b/helm/values.yaml index 492889277..e3f952ebc 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -8,7 +8,7 @@ replicaCount: 1 # -- This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ image: repository: ghcr.io/eclipse-edc/data-dashboard - tag: 0.3.1 + tag: 0.4.0 pullPolicy: IfNotPresent # -- This is for setting pull secrets if private images are used. diff --git a/package-lock.json b/package-lock.json index 41f4e787f..d54037917 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "data-dashboard", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "data-dashboard", - "version": "0.3.0", + "version": "0.4.0", "dependencies": { "@angular/animations": "^21.0.0", "@angular/cdk": "^21.0.0", diff --git a/package.json b/package.json index e822f5531..b4ea83926 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "data-dashboard", - "version": "0.3.1", + "version": "0.4.0", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/projects/dashboard-core/package-lock.json b/projects/dashboard-core/package-lock.json index 4eeecee23..aecb1bce1 100644 --- a/projects/dashboard-core/package-lock.json +++ b/projects/dashboard-core/package-lock.json @@ -1,12 +1,12 @@ { "name": "@eclipse-edc/dashboard-core", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@eclipse-edc/dashboard-core", - "version": "0.3.0", + "version": "0.4.0", "dependencies": { "tslib": "^2.8.1" }, diff --git a/projects/dashboard-core/package.json b/projects/dashboard-core/package.json index acbb2548d..3fcc28c8a 100644 --- a/projects/dashboard-core/package.json +++ b/projects/dashboard-core/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-edc/dashboard-core", - "version": "0.3.1", + "version": "0.4.0", "peerDependencies": { "@angular/common": "^21.0.0", "@angular/core": "^21.0.0",