Skip to content

Commit 35ada1a

Browse files
committed
JRuby 10.1.1.0
1 parent 17047e8 commit 35ada1a

5 files changed

Lines changed: 217 additions & 25 deletions

File tree

_config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ markdown: kramdown
77
permalink: date
88
# JRuby-specific info here; goes into the "site" jekyll variable
99
release:
10-
url: /2026/04/21/jruby-10-1-0-0.html
11-
version: 10.1.0.0
12-
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.tar.gz
13-
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.zip
14-
exe: https://github.com/jruby/jruby/releases/download/10.1.0.0/jruby_windows_10_1_0_0.exe
15-
exe64: https://github.com/jruby/jruby/releases/download/10.1.0.0/jruby_windows_x64_10_1_0_0.exe
16-
gem: https://rubygems.org/gems/jruby-jars/versions/10.1.0.0
17-
gem_older: https://rubygems.org/gems/jruby-jars/versions/10.1.0.0
10+
url: /2026/07/22/jruby-10-1-1-0.html
11+
version: 10.1.1.0
12+
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz
13+
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip
14+
exe: https://github.com/jruby/jruby/releases/download/10.1.1.0/jruby_windows_10_1_1_0.exe
15+
exe64: https://github.com/jruby/jruby/releases/download/10.1.1.0/jruby_windows_x64_10_1_1_0.exe
16+
gem: https://rubygems.org/gems/jruby-jars/versions/10.1.1.0
17+
gem_older: https://rubygems.org/gems/jruby-jars/versions/10.1.1.0
1818
urls:
1919
ghr: https://github.com/jruby/jruby/releases/download
2020
maven: https://repo1.maven.org/maven2/org/jruby
Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
---
2+
layout: post
3+
title: JRuby 10.1.1.0 Released
4+
---
5+
6+
The JRuby community is pleased to announce the release of JRuby 10.1.1.0.
7+
8+
* Homepage: [https://www.jruby.org/](https://www.jruby.org/)
9+
* Download: [https://www.jruby.org/download](https://www.jruby.org/download)
10+
11+
JRuby 10.1.1.x targets Ruby 3.4 compatibility.
12+
13+
Thank you to our contributors this release, you help keep JRuby moving forward!
14+
15+
Notable Changes
16+
---------------
17+
18+
### Performance
19+
20+
* Use [FastDoubleParser](https://github.com/wrandelshofer/FastDoubleParser) to improve performance of all string-to-double parsing. [#9150]
21+
* Only pack fixnum values for 16-bit signed by default, with optional 8-bit and 32-bit configs. [#9379]
22+
23+
### Standard Library
24+
25+
* jruby-openssl updated to 0.16.2 with several CVE fixes from BouncyCastle. [#9386], [#9504], [#9539]
26+
* erb updated to 6.0.1.1 to address CVE-2026-41316. [#9388]
27+
28+
### Native Integration
29+
30+
* Updated JRuby's native library backend with support for OpenBSD. [#9439]
31+
32+
### Java Integration
33+
34+
* Optimized automatic interface implementation when calling Java with a block. [#5023]
35+
36+
### Packaging
37+
38+
39+
* Begin deprecating `jruby-complete` and `jruby-core` Maven artifacts. Prefer the `jruby` and `jruby-base` artifacts. [#9512]
40+
41+
### 57 Issues and PRs resolved for 10.1.1.0
42+
43+
- #5023 [excessive loading of same InterfaceImpl][#5023]
44+
- #8184 [remove deprecated (internal) Java code][#8184]
45+
- #9034 [unused variable warning for blocks][#9034]
46+
- #9061 [Ruby 4.0 support][#9061]
47+
- #9150 [Use FastDoubleParser where appropriate][#9150]
48+
- #9219 [True keyword arguments][#9219]
49+
- #9320 [Cannot run code that has large Integer in `when` clause][#9320]
50+
- #9375 [`instance_exec` block argument destructuring when default value passed][#9375]
51+
- #9376 [Fix destructuring of block argument with default value][#9376]
52+
- #9379 [Make fixnum packing configurable and disable ints][#9379]
53+
- #9381 [Shrink RubyHashLinkedBuckets][#9381]
54+
- #9386 [[deps] bump jruby-openssl to 0.16.0][#9386]
55+
- #9388 [deps(stdlib): bump erb from 6.0.1 to 6.0.1.1 to resolve CVE-2026-41316][#9388]
56+
- #9393 [[10.1.0.0] Java::JavaLang::IllegalArgumentException: argument type mismatch][#9393]
57+
- #9395 [Difference in what `caller` returns in JRuby 10.1 and Ruby 4.0][#9395]
58+
- #9396 [Remove Class#new from backtrace][#9396]
59+
- #9398 [JRuby 10.1 `circular causes` failures within nested rescue (e.g rspec's tests)][#9398]
60+
- #9400 [Don't warn about unused destructured block/method parameters (GH-9034)][#9400]
61+
- #9404 [Warn on class/const assign in condition][#9404]
62+
- #9405 [Marshal.load corrupts repeated object reference after Set appears earlier in payload][#9405]
63+
- #9407 [Refactor Kernel#raise and fix remaining specs][#9407]
64+
- #9408 [Fix last send_spec with correct message][#9408]
65+
- #9409 [Ensure core exceptions get raised with $! as cause][#9409]
66+
- #9410 [Fix Hash#inspect of Symbol keys with non-ASCII encoding][#9410]
67+
- #9417 [Checking out aws-sdk-ruby creates a file with binary data.][#9417]
68+
- #9418 [Fix recursive set marshal dump and load][#9418]
69+
- #9420 [Fix Method/UnboundMethod#original_name deep alias chains][#9420]
70+
- #9425 [ivarSet missing return after megamorphic fallback][#9425]
71+
- #9427 [regression for activerecord-jdbcsqlite3-adapter: java.lang.NoSuchMethodError: 'void org.jruby.RubyHash.<init>(org.jruby.Ruby, int)'][#9427]
72+
- #9435 [Fall back to standard case/when for out-of-int-range Fixnum literals (#9320)][#9435]
73+
- #9437 [Pathname provides differing error message from MRI in JRuby 10.1.0.0][#9437]
74+
- #9439 [Update jffi for aarch64 OpenBSD][#9439]
75+
- #9442 [Use proper error text for nulls in path name][#9442]
76+
- #9445 [Reject invalid $0-prefixed global variable names like $01, $0abc][#9445]
77+
- #9447 [Improve alias redefinition warnings][#9447]
78+
- #9450 [Reverse aliasing warns when it should not][#9450]
79+
- #9456 [Restore RubyHash(Ruby, int) for older ARJDBC versions][#9456]
80+
- #9459 [[fix] rename RubyHash#set(get) to avoid collision][#9459]
81+
- #9462 [Regression in JRuby 10.1 with Prawn][#9462]
82+
- #9470 [Clean up more divergent keyword logic][#9470]
83+
- #9473 [Shade redline to avoid conflicting with external versions][#9473]
84+
- #9488 [Support backtrace_locations with Java exceptions][#9488]
85+
- #9495 [No need to check for virtual thread API availability][#9495]
86+
- #9501 [Fix CALL_KEYWORD_EMPTY leaking from (...) forwards to native methods][#9501]
87+
- #9503 [avoid setting $! from RaiseException <init>][#9503]
88+
- #9504 [[deps] bump jruby-openssl to 0.16.1][#9504]
89+
- #9511 [Update jnr:* and asm to latest][#9511]
90+
- #9512 [Begin deprecating jruby-complete and jruby-core][#9512]
91+
- #9520 [defined?(...) in eval'd for loop fails with TypeError][#9520]
92+
- #9523 [Don't copy the singleton class in Proc#dup][#9523]
93+
- #9539 [Update jruby-openssl to 0.16.2][#9539]
94+
- #9540 [Merge 10.0][#9540]
95+
- #9541 [NoMatchingPatternError#=== doesn't match instance of NoMatchingPatternKeyError][#9541]
96+
- #9543 [Time.new(string, in: ...) raises TypeError on the third call at a call site (JIT only)][#9543]
97+
- #9545 [Add a warning for nonuniform keywords annotations][#9545]
98+
- #9546 [Prism backend raises wrong error for pattern key mismatch][#9546]
99+
- #9547 [Merge jruby-prism fix for NoPatternKeyError][#9547]
100+
101+
[#5023]:https://github.com/jruby/jruby/issues/5023
102+
[#8184]:https://github.com/jruby/jruby/pull/8184
103+
[#9034]:https://github.com/jruby/jruby/issues/9034
104+
[#9061]:https://github.com/jruby/jruby/issues/9061
105+
[#9150]:https://github.com/jruby/jruby/pull/9150
106+
[#9219]:https://github.com/jruby/jruby/pull/9219
107+
[#9320]:https://github.com/jruby/jruby/issues/9320
108+
[#9375]:https://github.com/jruby/jruby/issues/9375
109+
[#9376]:https://github.com/jruby/jruby/pull/9376
110+
[#9379]:https://github.com/jruby/jruby/pull/9379
111+
[#9381]:https://github.com/jruby/jruby/pull/9381
112+
[#9386]:https://github.com/jruby/jruby/pull/9386
113+
[#9388]:https://github.com/jruby/jruby/pull/9388
114+
[#9393]:https://github.com/jruby/jruby/issues/9393
115+
[#9395]:https://github.com/jruby/jruby/issues/9395
116+
[#9396]:https://github.com/jruby/jruby/pull/9396
117+
[#9398]:https://github.com/jruby/jruby/issues/9398
118+
[#9400]:https://github.com/jruby/jruby/pull/9400
119+
[#9404]:https://github.com/jruby/jruby/pull/9404
120+
[#9405]:https://github.com/jruby/jruby/issues/9405
121+
[#9407]:https://github.com/jruby/jruby/pull/9407
122+
[#9408]:https://github.com/jruby/jruby/pull/9408
123+
[#9409]:https://github.com/jruby/jruby/pull/9409
124+
[#9410]:https://github.com/jruby/jruby/pull/9410
125+
[#9417]:https://github.com/jruby/jruby/issues/9417
126+
[#9418]:https://github.com/jruby/jruby/pull/9418
127+
[#9420]:https://github.com/jruby/jruby/pull/9420
128+
[#9425]:https://github.com/jruby/jruby/pull/9425
129+
[#9427]:https://github.com/jruby/jruby/issues/9427
130+
[#9435]:https://github.com/jruby/jruby/pull/9435
131+
[#9437]:https://github.com/jruby/jruby/issues/9437
132+
[#9439]:https://github.com/jruby/jruby/issues/9439
133+
[#9442]:https://github.com/jruby/jruby/pull/9442
134+
[#9445]:https://github.com/jruby/jruby/pull/9445
135+
[#9447]:https://github.com/jruby/jruby/pull/9447
136+
[#9450]:https://github.com/jruby/jruby/issues/9450
137+
[#9456]:https://github.com/jruby/jruby/pull/9456
138+
[#9459]:https://github.com/jruby/jruby/pull/9459
139+
[#9462]:https://github.com/jruby/jruby/issues/9462
140+
[#9470]:https://github.com/jruby/jruby/pull/9470
141+
[#9473]:https://github.com/jruby/jruby/pull/9473
142+
[#9488]:https://github.com/jruby/jruby/issues/9488
143+
[#9495]:https://github.com/jruby/jruby/pull/9495
144+
[#9501]:https://github.com/jruby/jruby/pull/9501
145+
[#9503]:https://github.com/jruby/jruby/pull/9503
146+
[#9504]:https://github.com/jruby/jruby/pull/9504
147+
[#9511]:https://github.com/jruby/jruby/pull/9511
148+
[#9512]:https://github.com/jruby/jruby/pull/9512
149+
[#9520]:https://github.com/jruby/jruby/issues/9520
150+
[#9523]:https://github.com/jruby/jruby/pull/9523
151+
[#9539]:https://github.com/jruby/jruby/issues/9539
152+
[#9540]:https://github.com/jruby/jruby/pull/9540
153+
[#9541]:https://github.com/jruby/jruby/issues/9541
154+
[#9543]:https://github.com/jruby/jruby/issues/9543
155+
[#9545]:https://github.com/jruby/jruby/pull/9545
156+
[#9546]:https://github.com/jruby/jruby/issues/9546
157+
[#9547]:https://github.com/jruby/jruby/pull/9547

download.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
---
55
<h1 id='jruby_downloads'>JRuby Downloads</h1>
66

7-
<h2 id='current_release_jruby'>Current Release: JRuby 10.1.0.0</h2>
7+
<h2 id='current_release_jruby'>Current Release: JRuby 10.1.1.0</h2>
88

9-
<p>JRuby 10.1.0.0 is our point release of our Ruby 4.0 support. Please check out our <a href='/2026/04/21/jruby-10-1-0-0'>release notes</a> for more information.</p>
9+
<p>JRuby 10.1.1.0 is our point release of our Ruby 4.0 support. Please check out our <a href='/2026/07/22/jruby-10-1-1-0'>release notes</a> for more information.</p>
1010

1111
<p class="trackDownloads">
12-
<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.tar.gz'>JRuby 10.1.0.0 Binary .tar.gz</a>
13-
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.tar.gz.sha256'>sha256</a>)<br />
14-
<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.zip'>JRuby 10.1.0.0 Binary .zip</a>
15-
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-bin.zip.sha256'>sha256</a> )<br />
16-
<a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_10_1_0_0.exe'>JRuby 10.1.0.0 Windows Executable</a>
17-
(<a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_10_1_0_0.exe.md5'>md5</a>, <a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_10_1_0_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_10_1_0_0.exe.sha256'>sha256</a>)<br />
18-
<a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_x64_10_1_0_0.exe'>JRuby 10.1.0.0 Windows Executable (x64)</a>
19-
(<a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_x64_10_1_0_0.exe.md5'>md5</a>, <a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_x64_10_1_0_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.ghr }}/10.1.0.0/jruby_windows_x64_10_1_0_0.exe.sha256'>sha256</a>)<br />
12+
<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz'>JRuby 10.1.1.0 Binary .tar.gz</a>
13+
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.sha256'>sha256</a>)<br />
14+
<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip'>JRuby 10.1.1.0 Binary .zip</a>
15+
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.sha256'>sha256</a> )<br />
16+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe'>JRuby 10.1.1.0 Windows Executable</a>
17+
(<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.md5'>md5</a>, <a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.sha256'>sha256</a>)<br />
18+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe'>JRuby 10.1.1.0 Windows Executable (x64)</a>
19+
(<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.md5'>md5</a>, <a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.sha1'>sha1</a>, <a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.sha256'>sha256</a>)<br />
2020
<!-- we do not push source tarballs to maven yet
21-
<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.tar.gz'>JRuby 10.1.0.0 Source .tar.gz</a>
22-
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.tar.gz.sha256'>sha256</a>)<br />
21+
<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.tar.gz'>JRuby 10.1.1.0 Source .tar.gz</a>
22+
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.tar.gz.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.tar.gz.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.tar.gz.sha256'>sha256</a>)<br />
2323
-->
24-
<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.zip'>JRuby 10.1.0.0 Source .zip</a>
25-
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.0.0/jruby-dist-10.1.0.0-src.zip.sha256'>sha256</a>)<br />
26-
<a href='{{ site.urls.maven }}/jruby-complete/10.1.0.0/jruby-complete-10.1.0.0.jar'>JRuby 10.1.0.0 Complete .jar</a>
27-
(<a href='{{ site.urls.maven }}/jruby-complete/10.1.0.0/jruby-complete-10.1.0.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/10.1.0.0/jruby-complete-10.1.0.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/10.1.0.0/jruby-complete-10.1.0.0.jar.sha256'>sha256</a>)<br />
28-
<a href='{{ site.release.gem }}'>JRuby-jars 10.1.0.0.gem</a><br />
24+
<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip'>JRuby 10.1.1.0 Source .zip</a>
25+
(<a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.sha256'>sha256</a>)<br />
26+
<a href='{{ site.urls.maven }}/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar'>JRuby 10.1.1.0 Complete .jar</a>
27+
(<a href='{{ site.urls.maven }}/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.md5'>md5</a>, <a href='{{ site.urls.maven }}/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.sha1'>sha1</a>, <a href='{{ site.urls.maven }}/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.sha256'>sha256</a>)<br />
28+
<a href='{{ site.release.gem }}'>JRuby-jars 10.1.1.0.gem</a><br />
2929
</p>
3030

3131
<p>JRuby 10.0.6.0 is our point release of our Ruby 3.4.x support. Please check out our <a href='/2026/06/11/jruby-10-0-6-0'>release notes</a> for more information.</p>
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/10.1.1.0
4+
---
5+
<h1>Files/downloads/10.1.1.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/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz'>jruby-bin-10.1.1.0.tar.gz</a><br/>
9+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.md5'>jruby-bin-10.1.1.0.tar.gz.md5</a><br/>
10+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.sha1'>jruby-bin-10.1.1.0.tar.gz.sha1</a><br/>
11+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.tar.gz.sha256'>jruby-bin-10.1.1.0.tar.gz.sha256</a><br/>
12+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip'>jruby-bin-10.1.1.0.zip</a><br/>
13+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.md5'>jruby-bin-10.1.1.0.zip.md5</a><br/>
14+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.sha1'>jruby-bin-10.1.1.0.zip.sha1</a><br/>
15+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-bin.zip.sha256'>jruby-bin-10.1.1.0.zip.sha256</a><br/>
16+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar'>jruby-complete-10.1.1.0.jar</a><br/>
17+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.md5'>jruby-complete-10.1.1.0.jar.md5</a><br/>
18+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.sha1'>jruby-complete-10.1.1.0.jar.sha1</a><br/>
19+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/10.1.1.0/jruby-complete-10.1.1.0.jar.sha256'>jruby-complete-10.1.1.0.jar.sha256</a><br/>
20+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip'>jruby-src-10.1.1.0.zip</a><br/>
21+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.md5'>jruby-src-10.1.1.0.zip.md5</a><br/>
22+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.sha1'>jruby-src-10.1.1.0.zip.sha1</a><br/>
23+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/10.1.1.0/jruby-dist-10.1.1.0-src.zip.sha256'>jruby-src-10.1.1.0.zip.sha256</a><br/>
24+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe'>jruby_windows_10_1_1_0.exe</a><br/>
25+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.md5'>jruby_windows_10_1_1_0.exe.md5</a><br/>
26+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.sha1'>jruby_windows_10_1_1_0.exe.sha1</a><br/>
27+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_10_1_1_0.exe.sha256'>jruby_windows_10_1_1_0.exe.sha256</a><br/>
28+
29+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe'>jruby_windows_x64_10_1_1_0.exe</a><br/>
30+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.md5'>jruby_windows_x64_10_1_1_0.exe.md5</a><br/>
31+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.sha1'>jruby_windows_x64_10_1_1_0.exe.sha1</a><br/>
32+
<a href='{{ site.urls.ghr }}/10.1.1.0/jruby_windows_x64_10_1_1_0.exe.sha256'>jruby_windows_x64_10_1_1_0.exe.sha256</a><br/>
33+
</p>

files/downloads/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ <h1>Files/downloads</h1>
174174
<a href='/files/downloads/10.1.0.0/index.html'>10.1.0.0</a><br/>
175175
<a href='/files/downloads/9.4.15.0/index.html'>9.4.15.0</a><br/>
176176
<a href='/files/downloads/10.0.6.0/index.html'>10.0.6.0</a><br/>
177+
<a href='/files/downloads/10.1.1.0/index.html'>10.1.1.0</a><br/>
177178
<!-- NEW_VERSION -->
178179

179180

@@ -189,5 +190,6 @@ <h1>Files/downloads</h1>
189190

190191

191192

193+
192194
<a href='https://s3.amazonaws.com/jruby.org/downloads/index.txt'>index.txt</a><br/>
193195
</p>

0 commit comments

Comments
 (0)