Skip to content

Commit 32c338b

Browse files
committed
Bump jruby version
1 parent 6eccf9e commit 32c338b

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
v2.5.1 Update to JRuby-9.3.1.0, under the hood changes in how we access java fields, no using `field` in place of `declared_field`, possible since JRuby-9.3.0.0 required since JRuby-9.3.1.0.
1+
v2.5.2 Update to JRuby-9.3.2.0.
2+
3+
v2.5.1 Update to JRuby-9.3.1.0, under the hood changes in how we access java fields, no using `field` in place of `declared_field`, possible since JRuby-9.3.0.0 required since JRuby-9.3.2.0.
24

35
v2.5.0 Update to JRuby-9.3.0.0.
46

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Requires java to build (and [jogl-2.4.0-rc jars][jogl_jars]), but uses a maven w
1919
```bash
2020
cd PiCrate # or whatever you call it
2121
rake # assumes an installed version of vanilla processing
22-
jgem install picrate-2.5.1-java.gem
22+
jgem install picrate-2.5.2-java.gem
2323

2424
```
2525
To create a template sketch:-

docs/_posts/2018-05-06-install_jruby.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Get the latest version from [http://jruby.org/download][download]
1414

1515
```bash
1616
cd /opt
17-
sudo tar xzvf /pathToDownload/jruby-bin-9.3.1.0.tar.gz
17+
sudo tar xzvf /pathToDownload/jruby-bin-9.3.2.0.tar.gz
1818
```
1919

2020
Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -42,5 +42,5 @@ The [picrate2_install.sh][bash] script currently installs jruby-9.3.0.0 and picr
4242

4343
If you know better please post on wiki
4444

45-
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.1.0/jruby-dist-9.3.1.0-bin.tar.gz"
45+
[download]:"https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.3.2.0/jruby-dist-9.3.2.0-bin.tar.gz"
4646
[bash]:https://gist.github.com/monkstone/6ae9840d7b7008c177b4a9f589d14ec6

lib/picrate/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PiCrate
4-
VERSION = '2.5.1'
4+
VERSION = '2.5.2'
55
end

pom.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
project 'picrate', 'http://maven.apache.org' do
44
model_version '4.0.0'
5-
id 'ruby-processing:picrate:2.5.1'
5+
id 'ruby-processing:picrate:2.5.2'
66
packaging 'jar'
77

88
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -24,7 +24,7 @@
2424
issue_management 'https://github.com/ruby-processing/PiCrate/issues', 'Github'
2525
# Need to update to jogl 2.4.1 as soon as available, then make a dependency
2626
properties('jogl.version' => '2.3.2',
27-
'jruby.version' => '9.3.1.0',
27+
'jruby.version' => '9.3.2.0',
2828
'batik.version' => '1.14',
2929
'itextpdf.version' => '5.5.13.2',
3030
'jruby.api' => 'http://jruby.org/apidocs/',

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ DO NOT MODIFY - GENERATED CODE
6868
<itextpdf.version>5.5.13.2</itextpdf.version>
6969
<jogl.version>2.3.2</jogl.version>
7070
<jruby.api>http://jruby.org/apidocs/</jruby.api>
71-
<jruby.version>9.3.1.0</jruby.version>
71+
<jruby.version>9.3.2.0</jruby.version>
7272
<picrate.basedir>${project.basedir}</picrate.basedir>
7373
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
7474
<processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>

0 commit comments

Comments
 (0)