Skip to content

Commit 8be5fd3

Browse files
committed
Bump jruby version
1 parent 1053f74 commit 8be5fd3

File tree

7 files changed

+13
-15
lines changed

7 files changed

+13
-15
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
dist: trusty
44

55
rvm:
6-
- jruby-9.2.1.0
6+
- jruby-9.2.2.0
77
jdk:
88
- oraclejdk8
99
os:

CHANGELOG.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
**v1.5.5** Update to jruby-complete-9.2.1.0
1+
**v1.6.1** Update to jruby-complete-9.2.2.0.
22

3-
**v1.5.4** Add color_group library, remove web_array helper method
4-
5-
**v1.5.3** Update to expect processing-3.4
3+
**v1.6.0** Update to expect processing-3.4 and to jruby-complete-9.2.1.0. Add color_group library, remove web_array helper method
64

75
**v1.5.2** JRuby downloads have moved
86

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Versions before JRubyArt-1.5.1, are unsupported, please update, preferably to la
77
_Note the main reason for the current build to fail on travis is when the current version of [processing is not available from maven central][testing], it has only ever been available by third parties (I am eternally hopeful that one day processing.org will see the light), actually rvm with jruby as used by travis-ci is also pretty crap as judged by the build traces._
88

99
## Requirements
10-
A clean start for `jruby_art` that works best with the latest version of [processing-3.4](https://github.com/processing/processing/releases) and [jruby-9.2.1.0](http://jruby.org/download) see [wiki](https://github.com/ruby-processing/JRubyArt/wiki/Building-latest-gem) for building gem from this repo. Changes from processing-2.0 to [processing-3.0 here](https://github.com/processing/processing/wiki/Changes-in-3.0). Should work on same platforms as vanilla processing (windows, mac, linux, [raspberrypi][pi]) for Android see Yuki Morohoshi [rubuto-processing3][].
10+
A clean start for `jruby_art` that works best with the latest version of [processing-3.4](https://github.com/processing/processing/releases) and [jruby-9.2.2.0](http://jruby.org/download) see [wiki](https://github.com/ruby-processing/JRubyArt/wiki/Building-latest-gem) for building gem from this repo. Changes from processing-2.0 to [processing-3.0 here](https://github.com/processing/processing/wiki/Changes-in-3.0). Should work on same platforms as vanilla processing (windows, mac, linux, [raspberrypi][pi]) for Android see Yuki Morohoshi [rubuto-processing3][].
1111
## Requirements
1212

13-
A suitable version of ruby (MRI `ruby 2.3+` or `jruby-9.2.1.0`) to download gem.
13+
A suitable version of ruby (MRI `ruby 2.3+` or `jruby-9.2.2.0`) to download gem.
1414

1515
`processing-3.4`
1616

@@ -42,7 +42,7 @@ height: 600 # for static sketch only
4242
gem install jruby_art
4343
k9 --install # installs jruby-complete-9.2.0.0 and downloads and installs samples to ~/k9_samples
4444
cd ~/k9_samples/contributed
45-
k9 --run jwishy.rb # if you have jruby-9.2.1.0 installed or config `JRUBY: false`
45+
k9 --run jwishy.rb # if you have jruby-9.2.2.0 installed or config `JRUBY: false`
4646
# to use jruby-complete set `JRUBY: false` in config
4747
```
4848
## Create sketches from built in templates

lib/jruby_art/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22
# A wrapper for version
33
module JRubyArt
4-
VERSION = '1.5.5'.freeze
4+
VERSION = '1.6.1'.freeze
55
end

pom.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project 'rp5extras', 'https://github.com/ruby-processing/JRubyArt' do
33

44
model_version '4.0.0'
5-
id 'ruby-processing:rp5extras', '1.5.5'
5+
id 'ruby-processing:rp5extras', '1.6.1'
66
packaging 'jar'
77

88
description 'rp5extras for JRubyArt'
@@ -32,7 +32,7 @@
3232
'jruby.api' => 'http://jruby.org/apidocs/'
3333
)
3434

35-
pom 'org.jruby:jruby:9.2.1.0'
35+
pom 'org.jruby:jruby:9.2.2.0'
3636
jar 'org.processing:core:3.3.7'
3737
jar 'org.processing:video:3.0.2'
3838

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>ruby-processing</groupId>
1313
<artifactId>rp5extras</artifactId>
14-
<version>1.5.5</version>
14+
<version>1.6.0</version>
1515
<name>rp5extras</name>
1616
<description>rp5extras for JRubyArt</description>
1717
<url>https://github.com/ruby-processing/JRubyArt</url>
@@ -50,7 +50,7 @@ DO NOT MODIFIY - GENERATED CODE
5050
<dependency>
5151
<groupId>org.jruby</groupId>
5252
<artifactId>jruby</artifactId>
53-
<version>9.2.1.0</version>
53+
<version>9.2.2.0</version>
5454
<type>pom</type>
5555
</dependency>
5656
<dependency>

vendors/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WARNING = <<-EOS.freeze
99
EOS
1010

1111

12-
JRUBYC_VERSION = '9.2.1.0'
12+
JRUBYC_VERSION = '9.2.2.0'
1313

1414
EXAMPLES = '3.2'
1515
HOME_DIR = ENV['HOME']
@@ -29,7 +29,7 @@ file "jruby-complete-#{JRUBYC_VERSION}.jar" do
2929
rescue
3030
warn(WARNING)
3131
end
32-
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "25998288595780e092cdac048c61d9cf0125095cbde254ae0ed2b0cfd8a7f9d2")
32+
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "c587e865608098930e6e51e41cf1a15a8a34b4a4ef0b2554d395b1b3c2de6dd5")
3333
end
3434

3535
directory "../lib/ruby"

0 commit comments

Comments
 (0)