Skip to content

Commit c684e85

Browse files
committed
bump version
1 parent f785ba4 commit c684e85

File tree

7 files changed

+44
-15
lines changed

7 files changed

+44
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A new version for jdk11 use, does not require an installed `vanilla processing`,
66

77
## Requirements
88

9-
A clean start for `jruby_art` with custom processing core included, built for [jruby-9.2.11.1](http://jruby.org/download) see [wiki](https://github.com/ruby-processing/JRubyArt/wiki/Building-latest-gem) for building gem from this repo.
9+
A clean start for `jruby_art` with custom processing core included, built for [jruby-9.2.12.0](http://jruby.org/download) see [wiki](https://github.com/ruby-processing/JRubyArt/wiki/Building-latest-gem) for building gem from this repo.
1010

1111
## Requirements
1212

@@ -35,9 +35,9 @@ java_args:
3535

3636
```bash
3737
gem install jruby_art
38-
k9 --install # installs jruby-complete-9.2.11.1 and downloads and installs samples to ~/k9_samples
38+
k9 --install # installs jruby-complete-9.2.12.0 and downloads and installs samples to ~/k9_samples
3939
cd ~/k9_samples/contributed
40-
k9 --run jwishy.rb # if you have jruby-9.2.11.1 installed or config `JRUBY: false`
40+
k9 --run jwishy.rb # if you have jruby-9.2.12.0 installed or config `JRUBY: false`
4141
# to use jruby-complete set `JRUBY: false` in config
4242
```
4343

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ task :test do
5050
end
5151
end
5252

53+
desc 'JDeps Tool'
54+
task :jdeps do
55+
system "#{MVN} jdeps:jdkinternals"
56+
end
57+
5358
desc 'clean'
5459
task :clean do
5560
Dir['./**/*.{jar,gem}'].each do |path|

jruby_art.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
3434
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
3535
spec.require_paths = ['lib']
36-
spec.required_ruby_version = '>= 2.4'
36+
spec.required_ruby_version = '>= 2.5'
3737
spec.add_development_dependency 'minitest', '~> 5.10'
3838
spec.add_development_dependency 'rake', '~> 12.3'
3939
spec.requirements << 'A decent graphics card'

lib/jruby_art/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
# A wrapper for version
44
module JRubyArt
5-
VERSION = '2.4.0'
5+
VERSION = '2.4.1'
66
end

pom.rb

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22

33
project 'jruby_art', 'https://github.com/ruby-processing/JRubyArt' do
44
model_version '4.0.0'
5-
id 'ruby-processing:jruby_art:2.4.0'
5+
id 'ruby-processing:jruby_art:2.4.1'
66
packaging 'jar'
77

88
description 'Jar for JRubyArt'
99

10-
developer 'monkstone' do
11-
name 'Martin Prout'
12-
13-
roles 'developer'
10+
{
11+
'monkstone' => 'Martin Prout', 'benfry' => 'Ben Fry',
12+
'REAS' => 'Casey Reas', 'codeanticode' => 'Andres Colubri'
13+
}.each do |key, value|
14+
developer key do
15+
name value
16+
roles 'developer'
17+
end
1418
end
1519

1620
issue_management 'https://github.com/ruby-processing/JRubyArt/issues', 'Github'
@@ -26,7 +30,7 @@
2630
'jogl.version' => '2.3.2',
2731
'jruby.api' => 'http://jruby.org/apidocs/')
2832

29-
pom 'org.jruby:jruby:9.2.11.1'
33+
pom 'org.jruby:jruby:9.2.12.0'
3034
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
3135
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
3236
jar 'org.processing:video:3.0.2'

pom.xml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,35 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>ruby-processing</groupId>
1313
<artifactId>jruby_art</artifactId>
14-
<version>2.4.0</version>
14+
<version>2.4.1</version>
1515
<name>jruby_art</name>
1616
<description>Jar for JRubyArt</description>
1717
<url>https://github.com/ruby-processing/JRubyArt</url>
1818
<developers>
1919
<developer>
2020
<id>monkstone</id>
2121
<name>Martin Prout</name>
22-
<email>[email protected]</email>
22+
<roles>
23+
<role>developer</role>
24+
</roles>
25+
</developer>
26+
<developer>
27+
<id>benfry</id>
28+
<name>Ben Fry</name>
29+
<roles>
30+
<role>developer</role>
31+
</roles>
32+
</developer>
33+
<developer>
34+
<id>REAS</id>
35+
<name>Casey Reas</name>
36+
<roles>
37+
<role>developer</role>
38+
</roles>
39+
</developer>
40+
<developer>
41+
<id>codeanticode</id>
42+
<name>Andres Colubri</name>
2343
<roles>
2444
<role>developer</role>
2545
</roles>
@@ -46,7 +66,7 @@ DO NOT MODIFIY - GENERATED CODE
4666
<dependency>
4767
<groupId>org.jruby</groupId>
4868
<artifactId>jruby</artifactId>
49-
<version>9.2.11.1</version>
69+
<version>9.2.12.0</version>
5070
<type>pom</type>
5171
</dependency>
5272
<dependency>

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WARNING = <<~WARN
1111
1212
WARN
1313
# https://github.com/processing/processing-video/releases/download/r6-v2.0-beta4/video-2.0-beta4.zip
14-
JRUBYC_VERSION = '9.2.11.1'
14+
JRUBYC_VERSION = '9.2.12.0'
1515
SOUND = 'sound.zip'
1616
SOUND_VERSION = 'v2.2.2'
1717
VIDEO = 'video-2.0-beta4.zip'

0 commit comments

Comments
 (0)