Skip to content

Commit 7b6faf8

Browse files
committed
bump jruby-complete version
1 parent 6a2c54a commit 7b6faf8

6 files changed

Lines changed: 15 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v1.4.9** Update to jruby-complete-9.1.17.0.
2+
13
**v1.4.8** Re-factor `control_panel` to avoid calling protected method on slider, also reduces boilerplate code requires in `control_panel` sketches.
24

35
**v1.4.7** Bump up to processing-3.3.7, make watch fail early if too many ruby files to watch
@@ -6,7 +8,7 @@
68

79
**v1.4.5** Vec2D and Vec3D now support `copy` constructor where the original can be a duck-type. Further the only requirement is that the duck-type responds to `:x`, and `:y` by returning a `float` or `fixnum` thus Vec2D can be promoted to Vec3D (where `z = 0`), or more usually some other Vector or Point class can be used as the original. A `vector_utils` library has been implemented, see examples for usage.
810

9-
**v1.4.4** Bump up to JRubyComplete-9.1.16.0
11+
**v1.4.4** Bump up to JRubyComplete-9.1.15.0
1012

1113
**v1.4.3** Features example sketches using the PixelFlow library by Thomas Diewald
1214

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Versions before JRubyArt-1.2.0, 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.3.7](https://github.com/processing/processing/releases) and [jruby-9.1.16.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) for Android see Yuki Morohoshi [rubuto-processing3][].
10+
A clean start for `jruby_art` that works best with the latest version of [processing-3.3.7](https://github.com/processing/processing/releases) and [jruby-9.1.17.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) for Android see Yuki Morohoshi [rubuto-processing3][].
1111
## Requirements
1212

13-
A suitable version of ruby (MRI `ruby 2.4+` or `jruby-9.1.16.0`) to download gem.
13+
A suitable version of ruby (MRI `ruby 2.4+` or `jruby-9.1.17.0`) to download gem.
1414

1515
`processing-3.3.7`
1616

@@ -40,9 +40,9 @@ height: 600 # for static sketch only
4040
4141
```bash
4242
gem install jruby_art
43-
k9 --install # installs jruby-complete-9.1.16.0 and downloads and installs samples to ~/k9_samples
43+
k9 --install # installs jruby-complete-9.1.17.0 and downloads and installs samples to ~/k9_samples
4444
cd ~/k9_samples/contributed
45-
k9 --run jwishy.rb # if you have jruby-9.1.16.0 installed or config `JRUBY: false`
45+
k9 --run jwishy.rb # if you have jruby-9.1.17.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

Lines changed: 1 addition & 1 deletion
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.4.8'.freeze
4+
VERSION = '1.4.9'.freeze
55
end

pom.rb

Lines changed: 2 additions & 2 deletions
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.4.8'
5+
id 'ruby-processing:rp5extras', '1.4.9'
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.1.16.0'
35+
pom 'org.jruby:jruby:9.1.17.0'
3636
jar 'org.processing:core:3.3.7'
3737
jar 'org.processing:video:3.0.2'
3838

pom.xml

Lines changed: 2 additions & 2 deletions
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.4.8</version>
14+
<version>1.4.9</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.1.16.0</version>
53+
<version>9.1.17.0</version>
5454
<type>pom</type>
5555
</dependency>
5656
<dependency>

vendors/Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ WARNING = <<-EOS.freeze
99
EOS
1010

1111

12-
JRUBYC_VERSION = '9.1.16.0'
12+
JRUBYC_VERSION = '9.1.17.0'
1313

14-
EXAMPLES = '3.0'
14+
EXAMPLES = '3.1'
1515
HOME_DIR = ENV['HOME']
1616
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1717

@@ -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", "814ed63dd2668d1b99e601c7a755adca2ed62e923db2a537c0f99064fa2bf0fc")
32+
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "bdf1a7ca08161d42262b3dad5888ba6fecaf9a2da7ff9170489224f3525cb457")
3333
end
3434

3535
directory "../lib/ruby"

0 commit comments

Comments
 (0)