From 15c9ca74552c945f02523b1d4f5550c9d200e505 Mon Sep 17 00:00:00 2001 From: Spring Buildmaster Date: Thu, 4 Apr 2019 03:16:47 +0000 Subject: [PATCH 1/2] Next development version (v2.1.5.BUILD-SNAPSHOT) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 15c07ce10b..6396ee248b 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ Spring Boot Build Spring Boot Build - 2.1.4.BUILD-SNAPSHOT + 2.1.5.BUILD-SNAPSHOT ${basedir} From d6496c00b977828b54c8d80ce9b095b4742deafa Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 3 Apr 2019 20:33:25 -0700 Subject: [PATCH 2/2] Fixup promote script --- ci/scripts/promote.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/promote.sh b/ci/scripts/promote.sh index 931c0e293e..6e6e982386 100755 --- a/ci/scripts/promote.sh +++ b/ci/scripts/promote.sh @@ -51,7 +51,7 @@ if [[ $RELEASE_TYPE = "RELEASE" ]]; then artifacts_published=false retry_counter=0 - while [ $artifacts_published == "false" ] && [ $retry_counter -lt WAIT_ATTEMPTS ]; do + while [ $artifacts_published == "false" ] && [ $retry_counter -lt $WAIT_ATTEMPTS ]; do result=$( curl -s -f -u ${BINTRAY_USERNAME}:${BINTRAY_API_KEY} https://api.bintray.com/packages/"${BINTRAY_SUBJECT}"/"${BINTRAY_REPO}"/"${groupId}" ) if [ $? -eq 0 ]; then versions=$( echo "$result" | jq -r '.versions' )