Skip to content

Commit

Permalink
1.2.0-SNAPSHOT
Browse files Browse the repository at this point in the history
* Bump to 1.2.0-SNAPSHOT in preparation for release
* Bump to SCOSB 3.2.0-RC1

Using new Spring versioning scheme:
https://spring.io/blog/2020/04/30/updates-to-spring-versions

closes #385
  • Loading branch information
spikymonkey committed Nov 12, 2020
1 parent ec101ad commit f404c9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -34,10 +34,10 @@ allprojects {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/release" }
if (!version.endsWith('RELEASE')) {
if (version =~ /((-M|-RC)[0-9]+|-SNAPSHOT)$/) {
maven { url "https://repo.spring.io/milestone" }
}
if (version.endsWith('BUILD-SNAPSHOT')) {
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}
Expand Down
2 changes: 1 addition & 1 deletion ci/images/release-ci-image/Dockerfile
Expand Up @@ -10,4 +10,4 @@ RUN mkdir -p /opt/openjdk && \
cd /opt/openjdk && \
curl -L https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u192-b12/OpenJDK8U-jdk_x64_linux_hotspot_8u192b12.tar.gz | tar xz --strip-components=2

ADD https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.2/concourse-java.sh /opt/
ADD https://raw.githubusercontent.com/spring-io/concourse-java-scripts/v0.0.3/concourse-java.sh /opt/
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,4 +1,4 @@
version=1.1.2.BUILD-SNAPSHOT
version=1.2.0-SNAPSHOT
group=org.springframework.cloud

onlyShowStandardStreamsOnTestFailure = false
Expand All @@ -9,7 +9,7 @@ cfJavaClientVersion = 4.7.0.RELEASE
checkstyleVersion = 8.37
commonsTextVersion = 1.8
immutablesVersion = 2.8.8
openServiceBrokerVersion = 3.2.0-SNAPSHOT
openServiceBrokerVersion = 3.2.0-RC1
pmdVersion = 6.29.0
springBootVersion = 2.3.5.RELEASE
springCredhubVersion = 2.1.1.RELEASE
Expand Down
4 changes: 2 additions & 2 deletions scripts/set-pipelines.sh
Expand Up @@ -23,8 +23,8 @@ main() {

pushd "$(dirname "$0")/../ci" >/dev/null

set_pipeline app-broker-1.1.x pipeline.yml master
set_pipeline app-broker-1.1.x-pr pr-pipeline.yml master
set_pipeline app-broker-1.2.x pipeline.yml master
set_pipeline app-broker-1.2.x-pr pr-pipeline.yml master

popd >/dev/null
}
Expand Down

0 comments on commit f404c9c

Please sign in to comment.