Skip to content

Commit e1ed01e

Browse files
author
monkstone
committed
update to jruby-complete-1.7.25
1 parent 26a11a0 commit e1ed01e

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v2.6.18 update to jruby-complete-1.7.25, to allow travis testing, anyone wishing to update to jruby-complete-9.0.5.0+ should try out `propane`.
2+
13
v2.6.17 move to a polyglot maven build and update to jruby-complete-1.7.24, to allow travis testing, should be easy to update to jruby-complete-9.0+ if required. Updating processing version is unecessary because JRubyArt does that.
24

35
v2.6.16 update to jruby-complete-1.7.23 changed to static load for jruby extensions implement Vec2D.random and Vec3D.random

lib/ruby-processing/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module RubyProcessing
2-
VERSION = '2.6.17'
2+
VERSION = '2.6.18'
33
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require 'fileutils'
22
project 'rp5extras', 'https://github.com/jashkenas/ruby-processing' do
33
model_version '4.0.0'
4-
id 'ruby-processing:rp5extras', '2.6.17'
4+
id 'ruby-processing:rp5extras', '2.6.18'
55
packaging 'jar'
66
description 'rp5extras for ruby-processing'
77
organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -28,7 +28,7 @@
2828
'jruby.api' => 'http://jruby.org/apidocs/'
2929
)
3030

31-
pom 'org.jruby:jruby:1.7.24'
31+
pom 'org.jruby:jruby:1.7.25'
3232
jar 'org.processing:core:2.2.1'
3333
jar 'org.processing:video:2.2.1'
3434
plugin_management do

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>2.6.17</version>
14+
<version>2.6.18</version>
1515
<name>rp5extras</name>
1616
<description>rp5extras for ruby-processing</description>
1717
<url>https://github.com/jashkenas/ruby-processing</url>
@@ -50,7 +50,7 @@ DO NOT MODIFIY - GENERATED CODE
5050
<dependency>
5151
<groupId>org.jruby</groupId>
5252
<artifactId>jruby</artifactId>
53-
<version>1.7.24</version>
53+
<version>1.7.25</version>
5454
<type>pom</type>
5555
</dependency>
5656
<dependency>

ruby-processing.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.email = "[email protected]"
1414
spec.description = <<-EOS
1515
Ruby-Processing is a ruby wrapper for the processing-2.0 art framework.
16-
This version supports processing-2.2.1, and uses jruby-complete-1.7.24 or an
16+
This version supports processing-2.2.1, and uses jruby-complete-1.7.25 or an
1717
installed jruby as the glue between ruby and java. Use both processing
1818
libraries and ruby gems in your sketches. The "watch" mode, provides a
1919
nice REPL-ish way to work on your processing sketches. Features a polyglot

vendors/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WARNING = <<-EOS
88
99
EOS
1010

11-
JRUBYC_VERSION = '1.7.24'
11+
JRUBYC_VERSION = '1.7.25'
1212
EXAMPLES = '1.7'
1313
HOME_DIR = ENV['HOME']
1414
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
@@ -27,7 +27,7 @@ file "jruby-complete-#{JRUBYC_VERSION}.jar" do
2727
rescue
2828
warn(WARNING)
2929
end
30-
check_sha1("jruby-complete-#{JRUBYC_VERSION}.jar", '01fc8605c833490b833ee1520f7a2e1409ef8885')
30+
check_sha1("jruby-complete-#{JRUBYC_VERSION}.jar", '8eb234259ec88edc05eedab05655f458a84bfcab')
3131
end
3232

3333
directory "../lib/ruby"

0 commit comments

Comments
 (0)