Skip to content

Commit ab263a1

Browse files
committed
Release Grails 3.1.0.RC2
1 parent 5101457 commit ab263a1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,9 @@ Next, update the Grails version in `build.gradle` and `grails-core/src/test/groo
5757
$ git push --tags
5858
$ git push
5959

60-
After pushing these changes to the repository you must wait for [the build](https://travis-ci.org/grails/grails-core) to complete. During this phase the JAR files will be uploaded to the [Grails Artefactory Repository](https://repo.grails.org/grails/libs-releases-local/).
60+
By tagging the release Travis will perform all the necessary steps to release a new version of Grails, just wait for [the build](https://travis-ci.org/grails/grails-core) to complete.
6161

62-
63-
The [Travis CI](https://travis-ci.org/grails/grails-core) build will automatically upload the tagged release to Github and be available of the [Releases page](https://github.com/grails/grails-core/releases).
62+
The [Travis CI](https://travis-ci.org/grails/grails-core) build will automatically upload the tagged release to Github and be available on the [Releases page](https://github.com/grails/grails-core/releases).
6463

6564
License
6665
---

build.gradle

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
public class GrailsUtilTests extends TestCase {
3636

3737
public void testGrailsVersion() {
38-
assertEquals("3.1.0.BUILD-SNAPSHOT", GrailsUtil.getGrailsVersion());
38+
assertEquals("3.1.0.RC2", GrailsUtil.getGrailsVersion());
3939
}
4040

4141
@Override

0 commit comments

Comments
 (0)