Skip to content

Commit 6cf62cf

Browse files
committed
Release Grails 3.2.0.RC1
1 parent 2bbb28d commit 6cf62cf

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apply plugin: 'idea'
2222
ext {
2323
bintrayPublish = false
2424
// Sets release version
25-
grailsVersion = '3.2.0.BUILD-SNAPSHOT'
25+
grailsVersion = '3.2.0.RC1'
2626
isBuildSnapshot = grailsVersion.endsWith(".BUILD-SNAPSHOT")
2727
isTravisBuild = System.getenv().get("TRAVIS") == 'true'
2828

grails-core/src/test/groovy/grails/util/GrailsUtilTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
public class GrailsUtilTests extends TestCase {
2626

2727
public void testGrailsVersion() {
28-
assertEquals("3.2.0.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
28+
assertEquals("3.2.0.RC1", GrailsUtil.getGrailsVersion());
2929
}
3030

3131
@Override

travis-publish-archives.sh

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,6 @@ if [[ $TRAVIS_PULL_REQUEST == 'false'
6868
git config --global user.name "$GIT_NAME"
6969
git config --global user.email "$GIT_EMAIL"
7070

71-
# Tag the Profile Repo
72-
git clone https://${GH_TOKEN}@github.com/grails/grails-profile-repository.git
73-
cd grails-profile-repository
74-
75-
echo "grailsVersion=${TRAVIS_TAG:1}" > profiles/gradle.properties
76-
git add profiles/gradle.properties
77-
git commit -m "Release $TRAVIS_TAG profiles"
78-
git tag $TRAVIS_TAG
79-
git push --tags
80-
git push
81-
cd ..
82-
8371
# Tag and release the docs
8472
git clone https://${GH_TOKEN}@github.com/grails/grails-doc.git grails-doc
8573
cd grails-doc
@@ -110,8 +98,4 @@ if [[ $TRAVIS_PULL_REQUEST == 'false'
11098

11199
fi
112100

113-
#if [[ $EXIT_STATUS == 0 ]]; then
114-
# ./gradlew travisciTrigger -i
115-
#fi
116-
117101
exit $EXIT_STATUS

0 commit comments

Comments
 (0)