Skip to content

Commit 0629d80

Browse files
committed
Update for 9.2.20.0 release
1 parent df4310f commit 0629d80

File tree

4 files changed

+126
-16
lines changed

4 files changed

+126
-16
lines changed
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
---
2+
layout: post
3+
title: JRuby 9.2.20.0 Released
4+
---
5+
The JRuby community is pleased to announce the release of JRuby 9.2.20.0
6+
7+
- Homepage: [http://www.jruby.org/](http://www.jruby.org/)
8+
- Download: [http://www.jruby.org/download](http://www.jruby.org/download)
9+
10+
JRuby 9.2.x is compatible with Ruby 2.5.x and stays in sync with C Ruby. As always there is a mix of miscellaneous fixes so be sure to read the issue list below. All users are encouraged to upgrade.
11+
12+
Compatiblity
13+
------------
14+
15+
* Argument-count errors will now produce a more accurate backtrace. ([#6335](https://github.com/jruby/jruby/issues/6335), [#6768](https://github.com/jruby/jruby/issues/6768), [#6771](https://github.com/jruby/jruby/pull/6771), [#6846](https://github.com/jruby/jruby/issues/6846), [#6928](https://github.com/jruby/jruby/pull/6928))
16+
17+
Standard Library
18+
----------------
19+
20+
* jruby-openssl has been updated to 0.11.0, which includes fixes for expired and replaced certificate verification. ([#6871](https://github.com/jruby/jruby/issues/6872), [#6909](https://github.com/jruby/jruby/pull/6909))
21+
22+
Native Integration
23+
------------------
24+
25+
* The built-in FFI library has been updated to match the FFI gem, and can now be upgraded independently of JRuby. ([#6732](https://github.com/jruby/jruby/issues/6732), [#6747](https://github.com/jruby/jruby/pull/6747))
26+
* FFI-based core methods on Windows and Solaris have been modified to delay activating FFI until after RubyGems has loaded any upgrades. ([#6751](https://github.com/jruby/jruby/issues/6751), [#6760](https://github.com/jruby/jruby/pull/6760), [#6762](https://github.com/jruby/jruby/pull/6762))
27+
28+
Java Integration
29+
----------------
30+
31+
* Nested jar files (jars packaged within another application jar) should load more quickly with caching improvements. ([#6730](https://github.com/jruby/jruby/issues/6730), [#6734](https://github.com/jruby/jruby/pull/6734), [#6740](https://github.com/jruby/jruby/pull/6740))
32+
33+
- 40 issues fixed for 9.2.20.0
34+
35+
### Github Issues resolved for 9.2.20.0
36+
37+
- [#5617 - JRuby raises ENOENT instead of EACCES](https://github.com/jruby/jruby/issues/5617)
38+
- [#6184 - NullPointerException or "class is not compiled Ruby" error when using a "for" loop](https://github.com/jruby/jruby/issues/6184)
39+
- [#6335 - ArgumentError is reported at wrong level for some jitted methods](https://github.com/jruby/jruby/issues/6335)
40+
- [#6726 - Open3 with no JAVA_OPTS fails silently](https://github.com/jruby/jruby/issues/6726)
41+
- [#6727 - Fixes #6184. NullPointerException/"class is not compiled Ruby" for loop](https://github.com/jruby/jruby/pull/6727)
42+
- [#6730 - JarCache checking for File.lastModified heavily slowing down startup](https://github.com/jruby/jruby/issues/6730)
43+
- [#6731 - Use java_home command on MacOS](https://github.com/jruby/jruby/pull/6731)
44+
- [#6734 - Backport JarCache soft reference fix](https://github.com/jruby/jruby/pull/6734)
45+
- [#6737 - GPL-2.0 with Classpath Exception in the COPYING file](https://github.com/jruby/jruby/issues/6737)
46+
- [#6740 - 6730 jar cache slowing down startup time 9.2](https://github.com/jruby/jruby/pull/6740)
47+
- [#6741 - Fix reference type and avoid closing jar directly](https://github.com/jruby/jruby/pull/6741)
48+
- [#6742 - Backport FFI from master](https://github.com/jruby/jruby/issues/6742)
49+
- [#6745 - exec on Windows doesn't find `.bat` files in PATH](https://github.com/jruby/jruby/issues/6745)
50+
- [#6746 - Fixes for Windows native exec](https://github.com/jruby/jruby/pull/6746)
51+
- [#6747 - Backport FFI from master](https://github.com/jruby/jruby/pull/6747)
52+
- [#6748 - Inconsistent encoding when calling #to_s on arrays containing hashes with non us-ascii characters](https://github.com/jruby/jruby/issues/6748)
53+
- [#6750 - JRuby issue with Installer EXE file](https://github.com/jruby/jruby/issues/6750)
54+
- [#6758 - private/private_method_defined? raising error when a module is prepended](https://github.com/jruby/jruby/issues/6758)
55+
- [#6759 - Fixes #6748. Inconsistent encoding when calling #to_s on arrays.](https://github.com/jruby/jruby/pull/6759)
56+
- [#6761 - JRuby crashes instead of reporting a syntax error in sequential `rescue`s where the error variable wasn't defined for the first one](https://github.com/jruby/jruby/issues/6761)
57+
- [#6764 - 1r should equal to 1.0r](https://github.com/jruby/jruby/issues/6764)
58+
- [#6765 - Use canonical form for "r" liternal](https://github.com/jruby/jruby/pull/6765)
59+
- [#6767 - Calling String#dup on strings used as a buffer in IO.copy_stream alters the body of all strings duped from the original](https://github.com/jruby/jruby/issues/6767)
60+
- [#6768 - stacktrace first line erroneously reports line number. Reports duplicate line # as second line of stacktrace.](https://github.com/jruby/jruby/issues/6768)
61+
- [#6769 - Undo shared-buffer optimizations from #6557](https://github.com/jruby/jruby/pull/6769)
62+
- [#6770 - Use line number of scope for initial backtrace](https://github.com/jruby/jruby/pull/6770)
63+
- [#6771 - Handle varargs frame on arity error in jitted code](https://github.com/jruby/jruby/pull/6771)
64+
- [#6776 - With prepend the aliased method gets the wrong self target](https://github.com/jruby/jruby/issues/6776)
65+
- [#6779 - fix CGI.unescapeHTML with invalid encoding](https://github.com/jruby/jruby/pull/6779)
66+
- [#6780 - Fix #6776 on 9.2](https://github.com/jruby/jruby/pull/6780)
67+
- [#6782 - Real fix for #6676 for 9.2](https://github.com/jruby/jruby/pull/6782)
68+
- [#6784 - Create and use pure-bash dirname and basename](https://github.com/jruby/jruby/pull/6784)
69+
- [#6799 - update ffi to 1.15.4](https://github.com/jruby/jruby/pull/6799)
70+
- [#6872 - Jruby does not support the "old" LetsEncrypt chain after DST Root CA X3 has expired](https://github.com/jruby/jruby/issues/6872)
71+
- [#6883 - Trust native unlink errno to do the right thing](https://github.com/jruby/jruby/pull/6883)
72+
- [#6903 - Set#dup does not seem to call #initialize_copy](https://github.com/jruby/jruby/issues/6903)
73+
- [#6909 - [deps] update jruby-openssl to 0.11.0](https://github.com/jruby/jruby/pull/6909)
74+
- [#6910 - Dynamic dispatch to super.initialize_[dup,clone] in native Set](https://github.com/jruby/jruby/pull/6910)
75+
- [#6911 - Update jnr and asm](https://github.com/jruby/jruby/pull/6911)
76+
- [#6928 - Fix raw and varargs backtrace elements](https://github.com/jruby/jruby/pull/6928)

download.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,26 @@ <h2 id='current_release_jruby'>Current Release: JRuby 9.3.1.0</h2>
2828
<a href='{{ site.release.gem }}'>JRuby-jars 9.3.1.0 .gem</a><br />
2929
</p>
3030

31-
<p>JRuby 9.2.19.0 is our point release of our Ruby 2.5.x support. Please check out our <a href='/2021/06/15/jruby-9-2-19-0'>release notes</a> for more information.</p>
31+
<p>JRuby 9.2.20.0 is our point release of our Ruby 2.5.x support. Please check out our <a href='/2021/11/02/jruby-9-2-20-0'>release notes</a> for more information.</p>
3232

3333
<p class="trackDownloads">
34-
<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.tar.gz'>JRuby 9.2.19.0 Binary .tar.gz</a>
35-
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.tar.gz.sha256'>sha256</a>)<br />
36-
<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.zip'>JRuby 9.2.19.0 Binary .zip</a>
37-
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-bin.zip.sha256'>sha256</a> )<br />
38-
<a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_9_2_19_0.exe'>JRuby 9.2.19.0 Windows Executable</a>
39-
(<a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_9_2_19_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_9_2_19_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_9_2_19_0.exe.sha256'>sha256</a>)<br />
40-
<a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_x64_9_2_19_0.exe'>JRuby 9.2.19.0 Windows Executable (x64)</a>
41-
(<a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_x64_9_2_19_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_x64_9_2_19_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.2.19.0/jruby_windows_x64_9_2_19_0.exe.sha256'>sha256</a>)<br />
34+
<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz'>JRuby 9.2.20.0 Binary .tar.gz</a>
35+
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.sha256'>sha256</a>)<br />
36+
<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip'>JRuby 9.2.20.0 Binary .zip</a>
37+
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.sha256'>sha256</a> )<br />
38+
<a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_9_2_20_0.exe'>JRuby 9.2.20.0 Windows Executable</a>
39+
(<a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_9_2_20_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_9_2_20_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_9_2_20_0.exe.sha256'>sha256</a>)<br />
40+
<a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_x64_9_2_20_0.exe'>JRuby 9.2.20.0 Windows Executable (x64)</a>
41+
(<a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.md5'>md5</a>, <a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.s3 }}/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.sha256'>sha256</a>)<br />
4242
<!-- we do not push source tarballs to maven yet
43-
<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.tar.gz'>JRuby 9.2.19.0 Source .tar.gz</a>
44-
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.tar.gz.sha256'>sha256</a>)<br />
43+
<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.tar.gz'>JRuby 9.2.20.0 Source .tar.gz</a>
44+
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.tar.gz.sha256'>sha256</a>)<br />
4545
-->
46-
<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.zip'>JRuby 9.2.19.0 Source .zip</a>
47-
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.19.0/jruby-dist-9.2.19.0-src.zip.sha256'>sha256</a>)<br />
48-
<a href='{{ site.urls.maven }}/jruby-complete/9.2.19.0/jruby-complete-9.2.19.0.jar'>JRuby 9.2.19.0 Complete .jar</a>
49-
(<a href='{{ site.urls.maven }}/jruby-complete/9.2.19.0/jruby-complete-9.2.19.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.2.19.0/jruby-complete-9.2.19.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.2.19.0/jruby-complete-9.2.19.0.jar.sha256'>sha256</a>)<br />
50-
<a href='{{ site.release.gem }}'>JRuby-jars 9.2.19.0 .gem</a><br />
46+
<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip'>JRuby 9.2.20.0 Source .zip</a>
47+
(<a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.sha256'>sha256</a>)<br />
48+
<a href='{{ site.urls.maven }}/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar'>JRuby 9.2.20.0 Complete .jar</a>
49+
(<a href='{{ site.urls.maven }}/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.sha256'>sha256</a>)<br />
50+
<a href='{{ site.release.gem }}'>JRuby-jars 9.2.20.0 .gem</a><br />
5151
</p>
5252

5353
<p>JRuby 9.1.17.0 represents our stable release of our Ruby 2.3.x support. Please check out our <a href='/2018/04/23/jruby-9-1-17-0'>release notes</a> for more information.</p>

files/downloads/9.2.20.0/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: main
3+
title: Files/downloads/9.2.20.0
4+
---
5+
<h1>Files/downloads/9.2.20.0</h1>
6+
<p class="trackDownloads">
7+
<a href='/files/downloads/index.html'>..</a><br/>
8+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz'>jruby-bin-9.2.20.0.tar.gz</a><br/>
9+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.md5'>jruby-bin-9.2.20.0.tar.gz.md5</a><br/>
10+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.sha1'>jruby-bin-9.2.20.0.tar.gz.sha1</a><br/>
11+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.tar.gz.sha256'>jruby-bin-9.2.20.0.tar.gz.sha256</a><br/>
12+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip'>jruby-bin-9.2.20.0.zip</a><br/>
13+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.md5'>jruby-bin-9.2.20.0.zip.md5</a><br/>
14+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.sha1'>jruby-bin-9.2.20.0.zip.sha1</a><br/>
15+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-bin.zip.sha256'>jruby-bin-9.2.20.0.zip.sha256</a><br/>
16+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar'>jruby-complete-9.2.20.0.jar</a><br/>
17+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.md5'>jruby-complete-9.2.20.0.jar.md5</a><br/>
18+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.sha1'>jruby-complete-9.2.20.0.jar.sha1</a><br/>
19+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.2.20.0/jruby-complete-9.2.20.0.jar.sha256'>jruby-complete-9.2.20.0.jar.sha256</a><br/>
20+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip'>jruby-src-9.2.20.0.zip</a><br/>
21+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.md5'>jruby-src-9.2.20.0.zip.md5</a><br/>
22+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.sha1'>jruby-src-9.2.20.0.zip.sha1</a><br/>
23+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.20.0/jruby-dist-9.2.20.0-src.zip.sha256'>jruby-src-9.2.20.0.zip.sha256</a><br/>
24+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_9_2_20_0.exe'>jruby_windows_9_2_20_0.exe</a><br/>
25+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_9_2_20_0.exe.md5'>jruby_windows_9_2_20_0.exe.md5</a><br/>
26+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_9_2_20_0.exe.sha1'>jruby_windows_9_2_20_0.exe.sha1</a><br/>
27+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_9_2_20_0.exe.sha256'>jruby_windows_9_2_20_0.exe.sha256</a><br/>
28+
29+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_x64_9_2_20_0.exe'>jruby_windows_x64_9_2_20_0.exe</a><br/>
30+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.md5'>jruby_windows_x64_9_2_20_0.exe.md5</a><br/>
31+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.sha1'>jruby_windows_x64_9_2_20_0.exe.sha1</a><br/>
32+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.2.20.0/jruby_windows_x64_9_2_20_0.exe.sha256'>jruby_windows_x64_9_2_20_0.exe.sha256</a><br/>
33+
</p>

files/downloads/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ <h1>Files/downloads</h1>
127127
<a href='/files/downloads/9.2.17.0/index.html'>9.2.17.0</a><br/>
128128
<a href='/files/downloads/9.2.18.0/index.html'>9.2.18.0</a><br/>
129129
<a href='/files/downloads/9.2.19.0/index.html'>9.2.19.0</a><br/>
130+
<a href='/files/downloads/9.2.20.0/index.html'>9.2.20.0</a><br/>
130131
<a href='/files/downloads/9.3.0.0/index.html'>9.3.0.0</a><br/>
131132
<a href='/files/downloads/9.3.1.0/index.html'>9.3.1.0</a><br/>
132133
<a href='https://s3.amazonaws.com/jruby.org/downloads/index.txt'>index.txt</a><br/>

0 commit comments

Comments
 (0)