From 1cab1fa2fc61712b7944acd167556429b9d5ceca Mon Sep 17 00:00:00 2001 From: Brugu Maharishi Date: Fri, 12 Jan 2024 09:17:39 -0600 Subject: [PATCH 1/5] update version to 1.0.0 --- deploy_mule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_mule.sh b/deploy_mule.sh index 4fbf724..cb79d3a 100755 --- a/deploy_mule.sh +++ b/deploy_mule.sh @@ -31,7 +31,7 @@ docker run \ -Dfile="${jar}" \ -DgroupId=com.cyberark.conjur \ -DartifactId=conjur-mule-connector \ - -Dversion="0.0.1" \ + -Dversion="1.0.0" \ -Dpackaging=jar \ -DgeneratePom=true From d98e5d19bbcf2b34da84d3a12c9f4738fb2bca60 Mon Sep 17 00:00:00 2001 From: Brugu Maharishi Date: Fri, 12 Jan 2024 15:21:25 -0600 Subject: [PATCH 2/5] update changelog --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe68be7..02e6f73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [0.0.1] - 2023-05-19 +## [1.0.0] - 2024-01-12 -### Added -- Example Atlantis/Infrapool Pipeline +- Mulesoft Connector for Conjur Vault From a2c8ff671302cb240a009613a51ea75f16158b7b Mon Sep 17 00:00:00 2001 From: Brugu Maharishi Date: Mon, 15 Jan 2024 23:24:11 -0600 Subject: [PATCH 3/5] Update deploy_mule.sh Co-authored-by: Matthew Brace --- deploy_mule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_mule.sh b/deploy_mule.sh index cb79d3a..2e72c6e 100755 --- a/deploy_mule.sh +++ b/deploy_mule.sh @@ -31,7 +31,7 @@ docker run \ -Dfile="${jar}" \ -DgroupId=com.cyberark.conjur \ -DartifactId=conjur-mule-connector \ - -Dversion="1.0.0" \ + -Dversion="$( Date: Mon, 15 Jan 2024 23:28:08 -0600 Subject: [PATCH 4/5] Update version change --- deploy_mule.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deploy_mule.sh b/deploy_mule.sh index 2e72c6e..f845783 100755 --- a/deploy_mule.sh +++ b/deploy_mule.sh @@ -1,5 +1,11 @@ #!/bin/bash +# Set up VERSION file for local development + +if [ ! -f "../VERSION" ]; then +echo -n "0.0.dev" > ../VERSION +fi + set -euo pipefail set -x From 7f9141526b9c4a87970993bd972def78fc7a4a18 Mon Sep 17 00:00:00 2001 From: Brugu Maharishi Date: Tue, 16 Jan 2024 09:35:01 -0600 Subject: [PATCH 5/5] Update deploy_mule.sh Co-authored-by: Matthew Brace --- deploy_mule.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy_mule.sh b/deploy_mule.sh index f845783..29f7b39 100755 --- a/deploy_mule.sh +++ b/deploy_mule.sh @@ -3,7 +3,7 @@ # Set up VERSION file for local development if [ ! -f "../VERSION" ]; then -echo -n "0.0.dev" > ../VERSION + echo -n "0.0.dev" > ../VERSION fi set -euo pipefail