Skip to content

Commit 0a5d872

Browse files
committed
getting ready for JRubyArt-1.1.1 release
1 parent f000517 commit 0a5d872

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

jruby_art.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111
spec.email = '[email protected]'
1212
spec.description = <<-EOS
1313
JRubyArt is a ruby wrapper for the processing art framework.
14-
This version supports processing-3.1.1, and uses jruby-9.1.1.0 as the glue
14+
This version supports processing-3.1.1, and uses jruby-9.1.2.0 as the glue
1515
between ruby and java. You can use both processing libraries and ruby gems
1616
in your sketches. Features create/run/watch/live modes. The "watch" mode,
1717
provides a nice REPL-ish way to work on your processing sketches. Includes:-
@@ -34,6 +34,6 @@ Gem::Specification.new do |spec|
3434
spec.add_development_dependency 'rake', '~> 11.1'
3535
spec.add_development_dependency 'minitest', '~> 5.8'
3636
spec.requirements << 'A decent graphics card'
37-
spec.requirements << 'java runtime >= 1.8.0_77+'
38-
spec.requirements << 'processing = 3.0.2+'
37+
spec.requirements << 'java runtime >= 1.8.0_92+'
38+
spec.requirements << 'processing = 3.1.0+'
3939
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
project 'rp5extras', 'https://github.com/ruby-processing/JRubyArt' do
66

77
model_version '4.0.0'
8-
id 'ruby-processing:rp5extras', '1.1.0'
8+
id 'ruby-processing:rp5extras', '1.1.1'
99
packaging 'jar'
1010

1111
description 'rp5extras for JRubyArt'
@@ -35,7 +35,7 @@
3535
'jruby.api' => 'http://jruby.org/apidocs/'
3636
)
3737

38-
pom 'org.jruby:jruby:9.1.1.0'
38+
pom 'org.jruby:jruby:9.1.2.0'
3939
jar 'org.processing:core:3.1'
4040
jar 'org.processing:video:3.0.2'
4141
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>1.1.0</version>
14+
<version>1.1.1</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.1.0</version>
53+
<version>9.1.2.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
@@ -8,8 +8,8 @@ WARNING = <<-EOS
88
99
EOS
1010

11-
JRUBYC_VERSION = '9.1.1.0'
12-
EXAMPLES = '1.0'
11+
JRUBYC_VERSION = '9.1.2.0'
12+
EXAMPLES = '1.1'
1313
HOME_DIR = ENV['HOME']
1414
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1515

@@ -27,7 +27,7 @@ file "jruby-complete-#{JRUBYC_VERSION}.jar" do
2727
rescue
2828
warn(WARNING)
2929
end
30-
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "659a2b120a02e8df55dddf3836e34023c80313a1c08b159ba3882f7d25ff8ef2")
30+
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "b9a6838ff7bbb0b3eda4eeba26017329572bc2fa014008a069b3848482275283")
3131
end
3232

3333
directory "../lib/ruby"

0 commit comments

Comments
 (0)