Skip to content

Commit

Permalink
release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrettranderson committed May 27, 2022
1 parent f2c937c commit b7ed7d3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
- name: Get changed charts (ct list-changed)
id: list-changed
run: |
changed=$(ct list-changed --chart-dirs de-identification-app --target-branch master)
changed=$(ct list-changed --chart-dirs de-identification-app --target-branch release-1.1.3)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Lint charts (ct lint)
run: ct lint --chart-dirs de-identification-app --target-branch master --validate-maintainers=false --debug
run: ct lint --chart-dirs de-identification-app --target-branch release-1.1.3 --validate-maintainers=false --debug

- name: Create 'kind' cluster
uses: helm/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion de-identification-app/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type: application

# This is the chart version. It is normally changed when the chart or application changes.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.0
version: 1.1.3

keywords:
- ibm
Expand Down
2 changes: 1 addition & 1 deletion de-identification-app/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ replicaCount: 1
image:
repository: alvearie/deid
pullPolicy: IfNotPresent
tag: v1.1.0
tag: v1.1.3
service:
type: ClusterIP
port: 8080
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* (C) Copyright IBM Corp. 2016,2021
* (C) Copyright IBM Corp. 2016, 2022
*
* SPDX-License-Identifier: Apache-2.0
*/
Expand All @@ -26,7 +26,7 @@ Info info() {
"The Data De-Identification service provides a wide range of de-identification capabilities designed to support GDPR, HIPAA, CCPA and other privacy frameworks allowing customers to meet their regulatory and privacy requirements.")
.license(new License().name("license")
.url("https://github.com/Alvearie/de-identification/blob/master/LICENSE"))
.version("1.2.0")
.version("1.1.3")
.contact(new Contact().name("IBM").url("https://github.com/Alvearie/de-identification"));
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<revision>1.2.0-SNAPSHOT</revision>
<revision>1.1.3</revision>
<!-- see org.springframework.boot:spring-boot-dependencies for additional managed dependency versions -->
<mockito.version>1.10.19</mockito.version>
<commons-csv.version>1.8</commons-csv.version>
Expand Down
4 changes: 2 additions & 2 deletions preDockerBuild.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
# (C) Copyright IBM Corp. 2021
# (C) Copyright IBM Corp. 2021, 2022
#
# SPDX-License-Identifier: Apache-2.0
#
Expand Down Expand Up @@ -42,7 +42,7 @@ curl -sSL "https://${gitApiKey}@raw.githubusercontent.com/WH-WH-de-identificatio
# If the branch is master, use the ${RELEASE_VERSION}-SNAPSHOT.
# If the branch is a release branch, use the ${RELEASE_VERSION}.
# If the branch is not master, include branch name in the version.
RELEASE_VERSION=1.2.0
RELEASE_VERSION=1.1.3
RELEASE_BUILD=false
GIT_BRANCH=`git rev-parse --abbrev-ref HEAD`
if [ "$GIT_BRANCH" == "master" ]; then
Expand Down

0 comments on commit b7ed7d3

Please sign in to comment.