Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep main to snapshot a new release #160

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/maven.build-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fi
# 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.3.0
RELEASE_VERSION=1.4.0
RELEASE_BUILD=false
mkdir -p .mvn
GIT_BRANCH=`git rev-parse --abbrev-ref HEAD`
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.1
version: 1.3.0

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.2.1
tag: v1.3.0
service:
type: ClusterIP
port: 8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0")
.version("1.4.0")
.contact(
new Contact().name("Merative").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.3.0-SNAPSHOT</revision>
<revision>1.4.0-SNAPSHOT</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
Loading