Skip to content

Commit 9b31886

Browse files
committed
Get ready for release
1 parent 15e9e49 commit 9b31886

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ task default: %i[init compile install test gem]
88
desc 'Copy Jars'
99
task :init do
1010
jogl24 = File.join(ENV['HOME'], 'jogl24')
11-
opengl = Dir.entries(jogl24).grep(/amd64|universal/).select { |jar| jar =~ /linux|windows|macosx/ }
11+
opengl = Dir.entries(jogl24).grep(/amd64|universal|arm64/).select { |jar| jar =~ /linux|windows|macosx|ios|/ }
1212
opengl.concat %w[jogl-all.jar gluegen-rt.jar]
1313
opengl.each do |gl|
1414
FileUtils.cp(File.join(jogl24, gl), File.join('.', 'lib'))

pom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'jogl.version' => '2.3.2', # for compiling actual included 2.4.0-rc
4747
'jruby.api' => 'http://jruby.org/apidocs/')
4848

49-
pom 'org.jruby:jruby:9.2.14.0'
49+
pom 'org.jruby:jruby:9.2.15.0'
5050
jar 'org.processing:video:3.3.7' # only for compiling
5151
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
5252
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'

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>propane</groupId>
1313
<artifactId>propane</artifactId>
14-
<version>3.6.0</version>
14+
<version>3.7.1</version>
1515
<name>propane</name>
1616
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
1717
<url>https://github.com/monkstone/propane</url>
@@ -74,7 +74,7 @@ DO NOT MODIFIY - GENERATED CODE
7474
<dependency>
7575
<groupId>org.jruby</groupId>
7676
<artifactId>jruby</artifactId>
77-
<version>9.2.14.0</version>
77+
<version>9.2.15.0</version>
7878
<type>pom</type>
7979
</dependency>
8080
<dependency>

0 commit comments

Comments
 (0)