Skip to content

Commit 941895f

Browse files
committed
Update for 9.4.10.0 release
1 parent 99fca76 commit 941895f

File tree

5 files changed

+217
-24
lines changed

5 files changed

+217
-24
lines changed

_config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ markdown: kramdown
77
permalink: date
88
# JRuby-specific info here; goes into the "site" jekyll variable
99
release:
10-
url: /2024/11/04/jruby-9-4-9-0.html
11-
version: 9.4.9.0
12-
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.9.0/jruby-dist-9.4.9.0-bin.tar.gz
13-
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.9.0/jruby-dist-9.4.9.0-bin.zip
14-
exe: https://s3.amazonaws.com/jruby.org/downloads/9.4.9.0/jruby_windows_9_4_9_0.exe
15-
exe64: https://s3.amazonaws.com/jruby.org/downloads/9.4.9.0/jruby_windows_x64_9_4_9_0.exe
16-
gem: https://rubygems.org/gems/jruby-jars/versions/9.4.9.0
10+
url: /2025/01/21/jruby-9-4-10-0.html
11+
version: 9.4.10.0
12+
tar: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.tar.gz
13+
zip: https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.zip
14+
exe: https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_9_4_10_0.exe
15+
exe64: https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_x64_9_4_10_0.exe
16+
gem: https://rubygems.org/gems/jruby-jars/versions/9.4.10.0
1717
gem_older: https://rubygems.org/gems/jruby-jars/versions/9.3.15.0
1818
urls:
1919
maven: https://repo1.maven.org/maven2/org/jruby
Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
---
2+
layout: post
3+
title: JRuby 9.4.10.0 Released
4+
---
5+
6+
The JRuby community is pleased to announce the release of JRuby 9.4.10.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 9.4.x targets Ruby 3.1 compatibility.
12+
13+
Thank you to our contributors this release, you help keep JRuby moving forward!
14+
15+
* Dani Smith [@danini-the-panini]
16+
* Karol Bucek [@kares]
17+
* mrnoname1000 [@mrnoname1000]
18+
19+
Ruby Compatibility
20+
------------------
21+
22+
* Fixed a NegativeArraySizeException crash parsing heredocs. [#8355], [#8557]
23+
* Users can now opt into Ruby 3.3 behavior for NoMethodError and NameError that no longer inspects the target object. This inspect frequently led to memory issues. Specify JRuby flag `-XnameError.inspect.object=false` or JVM property `jruby.nameError.inspect.object=false` to disable the inspect call. [#216], [#8384], [#8538]
24+
* Implemented the missing `Process.argv0` method, used by recent Bundler releases. [#8568], [#8570]
25+
26+
Standard Library
27+
----------------
28+
29+
* The jar-dependencies gem, responsible for fetching jar file dependencies of Ruby gems, can now be updated independently of JRuby. [#7262], [#8488], [#8502]
30+
* An upcoming release of jar-dependencies, will fix issues sourcing jar dependencies in container deployments (partially fixed previously by an updated ruby-maven-libs gem). [#7059], [#8366]
31+
* The psych gem is updated to version 5.2.3, including a fix for YAML aliases from SnakeYAML-Engine version 2.9. [#8352], [#8575]
32+
* The reline gem is updated to 0.5.12. [#8481]
33+
34+
Java Integration
35+
----------------
36+
37+
* Only JVM classes imported from the same classloader hierarchy as JRuby will be bound to constants in JRuby's package hierarchy. [#8156]
38+
* Implementing a Java interface no longer leads to constant redefinition warnings. [#8349], [#8503]
39+
* Precompiled Ruby scripts now properly prepare optimized homogeneous case/when statements. Previously they would deserialize incorrectly and garble the branches. [#8421], [#8424]
40+
41+
Performance and Usability
42+
-------------------------
43+
44+
* Additional runtime data structures are eagerly cleared when tearing down a JRuby runtime, aiding GC. [#8343], [#8566]
45+
* The JRuby shell-based launcher script now properly handles JRuby installed in a path with spaces. [#8441], [#8442]
46+
* The `Class#subclasses` method has been optimized to eliminate it as a bottleneck in complex ActiveRecord STI queries. [#8457], [#8462]
47+
* Integer multiplication operations that overflow outside of int64 range have been optimized to eliminate heavy exception raises. [#8516], [#8523]
48+
49+
Issues and PRs resolved for 9.4.10.0
50+
------------------------------------
51+
52+
- #7059 [Issue of Jar dependency with Jruby-9.3.3.0][#7059]
53+
- #7262 [jar-dependencies cannot be updated out-of-band from jruby][#7262]
54+
- #8156 [JRuby adds Java proxy classes to the Java module even if they are not from JRubyClassLoader][#8156]
55+
- #8343 [Free up memory memory used by JRuby during teardown][#8343]
56+
- #8349 [internal proxy class is stored in Ruby land and prints warning][#8349]
57+
- #8352 [Cyclic references in Set objects raise exception with `YAML#load`][#8352]
58+
- #8355 [NegativeArraySizeException while parsing Heredoc in irb in JRuby 9.4.8.0][#8355]
59+
- #8366 [Jruby 9.4.8.0 fails to install psych ][#8366]
60+
- #8384 [OutOfMemoryError while constructing a NameError in the context of a large object][#8384]
61+
- #8398 [ruby2_keywords + forwarding to native does not properly check arity][#8398]
62+
- #8412 [Intermittent exceptions with 'Java::JavaLang::NoClassDefFoundError : org/jruby/gen/RubyObject13'][#8412]
63+
- #8415 [Skip extension builds for default gems][#8415]
64+
- #8416 [[Possible bug] Can not start jruby-swing applications since 9.4.9.0 - or rather, the window auto-closes almost instantly][#8416]
65+
- #8417 [Trivial refactoring for match][#8417]
66+
- #8421 [Incorrect case tree selection when comparing long Symbols during compiled Ruby code execution][#8421]
67+
- #8424 [Sort the jump tables based on new values][#8424]
68+
- #8425 [Don't clear the ThreadGroup when Thread terminates][#8425]
69+
- #8431 [jruby/thread_dump.rb seems to be broken][#8431]
70+
- #8433 [Root specialized object classloader at JRuby classloader][#8433]
71+
- #8436 [Pass Enumerable#uniq arguments properly][#8436]
72+
- #8438 [Remove rogue exit(0) that shuts down JVM][#8438]
73+
- #8441 [Spaces in the path cause `bin/jruby` script to build an invalid command string][#8441]
74+
- #8442 [jruby.sh: Use array to handle option files][#8442]
75+
- #8457 [Class#subclasses slows down with larger sets][#8457]
76+
- #8462 [Optimize Class#subclasses][#8462]
77+
- #8466 [jirb 9.4.9.0 - reline "cannot convert parameter to native pointer"][#8466]
78+
- #8469 [fix --jdb -sourcepath command][#8469]
79+
- #8477 [Update to jar-dependencies 0.5.0][#8477]
80+
- #8478 [Avoid re-polling while reporting a Thread#raise][#8478]
81+
- #8479 [Thread interrupt requests can overwrite each other][#8479]
82+
- #8480 [Provide concrete-only traversal for Class#subclasses][#8480]
83+
- #8481 [Update reline to 0.5.12][#8481]
84+
- #8488 [Issues bundling psych related to the jar-dependencies bump][#8488]
85+
- #8502 [Avoid loading jar-dependencies to install gem hook][#8502]
86+
- #8503 [[ji] do not expose InterfaceImpl classes in Ruby land][#8503]
87+
- #8511 [Update to jruby-maven-plugins 3.0.4][#8511]
88+
- #8512 [Disable Maven download progress output on CI jobs][#8512]
89+
- #8515 [Update jruby-maven-plugins to 3.0.5][#8515]
90+
- #8516 [Strange performance difference?][#8516]
91+
- #8523 [Revert multiply to use non-intrinsic exactness checks][#8523]
92+
- #8538 [Backport no-inspect NameError logic][#8538]
93+
- #8557 [Fixes #8355: wallpaper crash in heredoc eof error][#8557]
94+
- #8562 [Use same logic as IR for kwarg handling in IO#write][#8562]
95+
- #8566 [Additional teardown to aid GC and release resources][#8566]
96+
- #8567 [Update thread dump hook for modern JRuby][#8567]
97+
- #8568 [Process.argv0 missing][#8568]
98+
- #8570 [Add Process.argv0][#8570]
99+
- #8571 [Update to jcodings 1.0.59][#8571]
100+
- #8572 [Use warning instead of warning when adding attr as module_function][#8572]
101+
- #8573 [Update jcodings to 1.0.61 and joni to 2.2.3][#8573]
102+
- #8575 [Update psych to 5.2.3][#8575]
103+
104+
[#216]:https://github.com/jruby/jruby/issues/216
105+
[#7059]:https://github.com/jruby/jruby/issues/7059
106+
[#7262]:https://github.com/jruby/jruby/issues/7262
107+
[#8156]:https://github.com/jruby/jruby/issues/8156
108+
[#8343]:https://github.com/jruby/jruby/issues/8343
109+
[#8349]:https://github.com/jruby/jruby/issues/8349
110+
[#8352]:https://github.com/jruby/jruby/issues/8352
111+
[#8355]:https://github.com/jruby/jruby/issues/8355
112+
[#8366]:https://github.com/jruby/jruby/issues/8366
113+
[#8384]:https://github.com/jruby/jruby/issues/8384
114+
[#8398]:https://github.com/jruby/jruby/issues/8398
115+
[#8412]:https://github.com/jruby/jruby/issues/8412
116+
[#8415]:https://github.com/jruby/jruby/pull/8415
117+
[#8416]:https://github.com/jruby/jruby/issues/8416
118+
[#8417]:https://github.com/jruby/jruby/pull/8417
119+
[#8421]:https://github.com/jruby/jruby/issues/8421
120+
[#8424]:https://github.com/jruby/jruby/pull/8424
121+
[#8425]:https://github.com/jruby/jruby/pull/8425
122+
[#8431]:https://github.com/jruby/jruby/issues/8431
123+
[#8433]:https://github.com/jruby/jruby/pull/8433
124+
[#8436]:https://github.com/jruby/jruby/pull/8436
125+
[#8438]:https://github.com/jruby/jruby/pull/8438
126+
[#8441]:https://github.com/jruby/jruby/issues/8441
127+
[#8442]:https://github.com/jruby/jruby/pull/8442
128+
[#8457]:https://github.com/jruby/jruby/issues/8457
129+
[#8462]:https://github.com/jruby/jruby/pull/8462
130+
[#8466]:https://github.com/jruby/jruby/issues/8466
131+
[#8469]:https://github.com/jruby/jruby/pull/8469
132+
[#8477]:https://github.com/jruby/jruby/pull/8477
133+
[#8478]:https://github.com/jruby/jruby/pull/8478
134+
[#8479]:https://github.com/jruby/jruby/issues/8479
135+
[#8480]:https://github.com/jruby/jruby/pull/8480
136+
[#8481]:https://github.com/jruby/jruby/pull/8481
137+
[#8488]:https://github.com/jruby/jruby/issues/8488
138+
[#8502]:https://github.com/jruby/jruby/pull/8502
139+
[#8503]:https://github.com/jruby/jruby/pull/8503
140+
[#8511]:https://github.com/jruby/jruby/pull/8511
141+
[#8512]:https://github.com/jruby/jruby/pull/8512
142+
[#8515]:https://github.com/jruby/jruby/pull/8515
143+
[#8516]:https://github.com/jruby/jruby/issues/8516
144+
[#8523]:https://github.com/jruby/jruby/pull/8523
145+
[#8538]:https://github.com/jruby/jruby/pull/8538
146+
[#8557]:https://github.com/jruby/jruby/pull/8557
147+
[#8562]:https://github.com/jruby/jruby/pull/8562
148+
[#8566]:https://github.com/jruby/jruby/pull/8566
149+
[#8567]:https://github.com/jruby/jruby/pull/8567
150+
[#8568]:https://github.com/jruby/jruby/issues/8568
151+
[#8570]:https://github.com/jruby/jruby/pull/8570
152+
[#8571]:https://github.com/jruby/jruby/pull/8571
153+
[#8572]:https://github.com/jruby/jruby/pull/8572
154+
[#8573]:https://github.com/jruby/jruby/pull/8573
155+
[#8575]:https://github.com/jruby/jruby/pull/8575
156+
157+
[@danini-the-panini]:https://github.com/danini-the-panini
158+
[@kares]:https://github.com/kares
159+
[@mrnoname1000]:https://github.com/mrnoname1000

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 9.4.9.0</h2>
7+
<h2 id='current_release_jruby'>Current Release: JRuby 9.4.10.0</h2>
88

9-
<p>JRuby 9.4.9.0 is our point release of our Ruby 3.1.x support. Please check out our <a href='/2024/11/04/jruby-9-4-9-0'>release notes</a> for more information.</p>
9+
<p>JRuby 9.4.10.0 is our point release of our Ruby 3.1.x support. Please check out our <a href='/2025/01/21/jruby-9-4-10-0'>release notes</a> for more information.</p>
1010

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

3131

files/downloads/9.4.10.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.4.10.0
4+
---
5+
<h1>Files/downloads/9.4.10.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.4.10.0/jruby-dist-9.4.10.0-bin.tar.gz'>jruby-bin-9.4.10.0.tar.gz</a><br/>
9+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.tar.gz.md5'>jruby-bin-9.4.10.0.tar.gz.md5</a><br/>
10+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.tar.gz.sha1'>jruby-bin-9.4.10.0.tar.gz.sha1</a><br/>
11+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.tar.gz.sha256'>jruby-bin-9.4.10.0.tar.gz.sha256</a><br/>
12+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.zip'>jruby-bin-9.4.10.0.zip</a><br/>
13+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.zip.md5'>jruby-bin-9.4.10.0.zip.md5</a><br/>
14+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.zip.sha1'>jruby-bin-9.4.10.0.zip.sha1</a><br/>
15+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-bin.zip.sha256'>jruby-bin-9.4.10.0.zip.sha256</a><br/>
16+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.4.10.0/jruby-complete-9.4.10.0.jar'>jruby-complete-9.4.10.0.jar</a><br/>
17+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.4.10.0/jruby-complete-9.4.10.0.jar.md5'>jruby-complete-9.4.10.0.jar.md5</a><br/>
18+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.4.10.0/jruby-complete-9.4.10.0.jar.sha1'>jruby-complete-9.4.10.0.jar.sha1</a><br/>
19+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-complete/9.4.10.0/jruby-complete-9.4.10.0.jar.sha256'>jruby-complete-9.4.10.0.jar.sha256</a><br/>
20+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-src.zip'>jruby-src-9.4.10.0.zip</a><br/>
21+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-src.zip.md5'>jruby-src-9.4.10.0.zip.md5</a><br/>
22+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-src.zip.sha1'>jruby-src-9.4.10.0.zip.sha1</a><br/>
23+
<a href='https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.4.10.0/jruby-dist-9.4.10.0-src.zip.sha256'>jruby-src-9.4.10.0.zip.sha256</a><br/>
24+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_9_4_10_0.exe'>jruby_windows_9_4_10_0.exe</a><br/>
25+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_9_4_10_0.exe.md5'>jruby_windows_9_4_10_0.exe.md5</a><br/>
26+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_9_4_10_0.exe.sha1'>jruby_windows_9_4_10_0.exe.sha1</a><br/>
27+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_9_4_10_0.exe.sha256'>jruby_windows_9_4_10_0.exe.sha256</a><br/>
28+
29+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_x64_9_4_10_0.exe'>jruby_windows_x64_9_4_10_0.exe</a><br/>
30+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_x64_9_4_10_0.exe.md5'>jruby_windows_x64_9_4_10_0.exe.md5</a><br/>
31+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_x64_9_4_10_0.exe.sha1'>jruby_windows_x64_9_4_10_0.exe.sha1</a><br/>
32+
<a href='https://s3.amazonaws.com/jruby.org/downloads/9.4.10.0/jruby_windows_x64_9_4_10_0.exe.sha256'>jruby_windows_x64_9_4_10_0.exe.sha256</a><br/>
33+
</p>

0 commit comments

Comments
 (0)