Skip to content

Commit

Permalink
Merge pull request #999 from eclipse-tractusx/build/version/6.1.0
Browse files Browse the repository at this point in the history
build(version): increase BPDM app version to 6.1.0 (RELEASE)
  • Loading branch information
nicoprow committed Jul 15, 2024
2 parents 8af4933 + e344002 commit bedcf07
Show file tree
Hide file tree
Showing 23 changed files with 43 additions and 35 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/chart-test-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,15 @@ jobs:
id: checkRelease
run: |
CHART_VERSION=$(grep 'version:' ./charts/bpdm/Chart.yaml | head -n1 | awk '{ print $2}')
SNAPSHOT=$(echo $CHART_VERSION | grep 'SNAPSHOT')
echo "CHART_VERSION: $CHART_VERSION"
SNAPSHOT=$(echo "$CHART_VERSION" | grep 'SNAPSHOT' || echo "" )
echo "SNAPSHOT: $SNAPSHOT"
if [[ -z "$SNAPSHOT" ]]; then
IS_RELEASE=true; else
IS_RELEASE=true
else
IS_RELEASE=false
fi
echo "IS_RELEASE: $IS_RELEASE"
echo "isRelease=$IS_RELEASE" >> $GITHUB_OUTPUT
- name: Set up Helm
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/helm-chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,15 @@ jobs:
id: checkRelease
run: |
CHART_VERSION=$(grep 'version:' ./charts/bpdm/Chart.yaml | head -n1 | awk '{ print $2}')
SNAPSHOT=$(echo $CHART_VERSION | grep 'SNAPSHOT')
echo "CHART_VERSION: $CHART_VERSION"
SNAPSHOT=$(echo "$CHART_VERSION" | grep 'SNAPSHOT' || echo "" )
echo "SNAPSHOT: $SNAPSHOT"
if [[ -z "$SNAPSHOT" ]]; then
IS_RELEASE=true; else
IS_RELEASE=false
IS_RELEASE=true
else
IS_RELEASE=false
fi
echo "IS_RELEASE: $IS_RELEASE"
echo "isRelease=$IS_RELEASE" >> $GITHUB_OUTPUT
- name: Configure Git
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

For changes to the BPDM Helm charts please consult the [changelog](charts/bpdm/CHANGELOG.md) of the charts directly.

## [6.1.0] - [tbd]
## [6.1.0] - [2024-07-15]

### Added

Expand Down
2 changes: 1 addition & 1 deletion bpdm-cleaning-service-dummy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-common-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-gate-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<artifactId>bpdm-parent</artifactId>
<groupId>org.eclipse.tractusx</groupId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-gate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-orchestrator-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-orchestrator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>bpdm-parent</artifactId>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [5.1.0] - tbd
## [5.1.0] - 2024-07-15

### Changed

Expand Down
12 changes: 6 additions & 6 deletions charts/bpdm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ apiVersion: v2
name: bpdm
type: application
description: A Helm chart for Kubernetes that deploys the BPDM applications
version: 5.1.0-SNAPSHOT
appVersion: "6.1.0-SNAPSHOT"
version: 5.1.0
appVersion: "6.1.0"
home: https://github.com/eclipse-tractusx/bpdm
sources:
- https://github.com/eclipse-tractusx/bpdm
Expand All @@ -33,19 +33,19 @@ maintainers:

dependencies:
- name: bpdm-gate
version: 6.1.0-SNAPSHOT
version: 6.1.0
alias: bpdm-gate
condition: bpdm-gate.enabled
- name: bpdm-pool
version: 7.1.0-SNAPSHOT
version: 7.1.0
alias: bpdm-pool
condition: bpdm-pool.enabled
- name: bpdm-cleaning-service-dummy
version: 3.1.0-SNAPSHOT
version: 3.1.0
alias: bpdm-cleaning-service-dummy
condition: bpdm-cleaning-service-dummy.enabled
- name: bpdm-orchestrator
version: 3.1.0-SNAPSHOT
version: 3.1.0
alias: bpdm-orchestrator
condition: bpdm-orchestrator.enabled
- name: bpdm-common
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [3.1.0] - tbd
## [3.1.0] - 2024-07-15

### Changed

Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-cleaning-service-dummy
appVersion: "6.1.0-SNAPSHOT"
version: 3.1.0-SNAPSHOT
appVersion: "6.1.0"
version: 3.1.0
description: A Helm chart for deploying the BPDM cleaning service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-gate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [6.1.0] - tbd
## [6.1.0] - 2024-07-15

### Changed

Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-gate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-gate
appVersion: "6.1.0-SNAPSHOT"
version: 6.1.0-SNAPSHOT
appVersion: "6.1.0"
version: 6.1.0
description: A Helm chart for deploying the BPDM gate service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [3.1.0] - tbd
## [3.1.0] - 2024-07-15

### Added

Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-orchestrator
appVersion: "6.1.0-SNAPSHOT"
version: 3.1.0-SNAPSHOT
appVersion: "6.1.0"
version: 3.1.0
description: A Helm chart for deploying the BPDM Orchestrator service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [7.1.0] - tbd
## [7.1.0] - 2024-07-15

### Changed

Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-pool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-pool
appVersion: "6.1.0-SNAPSHOT"
version: 7.1.0-SNAPSHOT
appVersion: "6.1.0"
version: 7.1.0
description: A Helm chart for deploying the BPDM pool service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<artifactId>bpdm-parent</artifactId>
<name>Business Partner Data Management Parent</name>
<description>Parent pom of Business Partner Data Management</description>
<version>6.1.0-SNAPSHOT</version>
<version>6.1.0</version>
<packaging>pom</packaging>

<parent>
Expand Down

0 comments on commit bedcf07

Please sign in to comment.