Skip to content

Commit d034c13

Browse files
authored
Release 2.1.0-beta.0
2 parents 33e8442 + 33d842a commit d034c13

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

README.adoc

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
= JRuby/Gradle plugins
22

3-
image::https://travis-ci.org/jruby-gradle/jruby-gradle-plugin.svg?branch=master["Build Status", link="https://travis-ci.org/jruby-gradle/jruby-gradle-plugin"]
4-
5-
image::https://api.bintray.com/packages/jruby-gradle/plugins/jruby-gradle-plugin/images/download.svg[link="https://bintray.com/jruby-gradle/plugins/jruby-gradle-plugin/_latestVersion"]
6-
3+
image::https://github.com/jruby-gradle/jruby-gradle-plugin/actions/workflows/build.yml/badge.svg["Build Status", link="https://github.com/jruby-gradle/jruby-gradle-plugin/actions/workflows/build.yml"]
74
image::https://badges.gitter.im/Join%20Chat.svg[link="https://gitter.im/jruby-gradle/jruby-gradle-plugin", title="Gitter"]
85

9-
106
You can also join us on the link:https://groups.google.com/forum/#!forum/jruby-gradle[JRuby/Gradle mailing list]
117

128
JRuby/Gradle brings the power and flexibility of
@@ -18,7 +14,8 @@ Use of this plugin replaces the need for Rake, link:http://bundler.io[Bundler]
1814
and link:https://github.com/jruby/warbler[Warbler].
1915

2016

21-
NOTE: JRuby/Gradle 2.0 relies on JRuby 9.x and later.
17+
NOTE: JRuby/Gradle 2.1 relies on JRuby 9.4 and later.
18+
JRuby/Gradle 2.0 relies on JRuby 9.x and later.
2219

2320

2421
This repository contains the:

base-plugin/src/integTest/groovy/com/github/jrubygradle/JRubyExecExtensionIntegrationSpec.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class JRubyExecExtensionIntegrationSpec extends IntegrationSpecification {
101101
useScript(REQUIRES_GEM)
102102
createJRubyExecProject withCreditCardValidator(), """
103103
script '${REQUIRES_GEM}'
104-
jrubyArgs '-T1'
104+
jrubyArgs '-v'
105105
"""
106106

107107
when:

base-plugin/src/integTest/groovy/com/github/jrubygradle/JRubyPrepareGemsIntegrationSpec.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,13 @@ rubygems:tilt:2.0.9
160160
withPreamble """
161161
jrubyPrepare.outputDir = '${pathAsUriStr(projectDir)}'.toURI()
162162
"""
163-
withDependencies 'gems "rubygems:childprocess:1.0.1"'
163+
withDependencies 'gems "rubygems:childprocess:4.1.0"'
164164

165165
when:
166166
build()
167167

168168
then:
169-
new File(projectDir, "gems/childprocess-1.0.1").exists()
169+
new File(projectDir, "gems/childprocess-4.1.0").exists()
170170
}
171171

172172
private void withDefaultRepositories() {

base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import static org.ysb33r.grolifant.api.v4.StringUtils.stringize
6161
*/
6262
@CompileStatic
6363
class JRubyPluginExtension extends AbstractCombinedProjectTaskExtension {
64-
public static final String DEFAULT_JRUBY_VERSION = '9.3.4.0'
64+
public static final String DEFAULT_JRUBY_VERSION = '9.4.2.0'
6565

6666
public static final String NAME = 'jruby'
6767

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ allprojects {
2424
targetCompatibility = '1.8'
2525

2626
ext {
27-
olderJRubyVersion = '9.2.1.0'
27+
olderJRubyVersion = '9.4.1.0'
2828
spockVersion = "org.spockframework:spock-core:1.2-groovy-2.4"
2929
pluginExtraText = (version.contains('-alpha') || version.contains('-beta')) ?
3030
'(If you need a production-ready version of the JRuby/Gradle plugin use a 1.7.x release instead)': ''

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.1.0-alpha.3
1+
version=2.1.0-beta.0
22
group=com.github.jruby-gradle
33
copyrightYear=2014-2020
44

@@ -15,7 +15,7 @@ targetCompatibility=1.8
1515
sourceCompatibility=1.8
1616

1717
grolifantVersion=1.3.3
18-
jrubyVersion=9.3.4.0
18+
jrubyVersion=9.4.2.0
1919
jettyVersion=9.2.12.v20150709
2020
bcprovVersion=1.46
2121
httpbuilderNgVersion=1.0.3

0 commit comments

Comments
 (0)