Skip to content

Commit 7e63546

Browse files
committed
update expected processing version
1 parent 586af74 commit 7e63546

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**v1.2.6** Update to processing-3.2.3 and jruby-9.1.6.0-complete
1+
**v1.2.6** Update to processing-3.2.3 and jruby-9.1.6.0-complete, re-factor to use a Command class to create argument array and exec.
22

33
**v1.2.5** Change gemspec description, trying to get people not to ignore changes to documentation?
44

lib/jruby_art/command.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def initialize(runner:, args:, filename:)
2020
def cmd(root)
2121
cmda = jruby_command(Processing::RP_CONFIG.fetch('JRUBY', true), root)
2222
begin
23-
puts *cmda
2423
exec(*cmda)
2524
# exec replaces the Ruby process with the JRuby one.
2625
rescue Java::JavaLang::ClassNotFoundException

lib/jruby_art/installer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: false
22
require 'yaml'
33

4-
VERSION = '3.2.1'.freeze # processing version
4+
VERSION = '3.2.3'.freeze # processing version
55

66
# Abstract Installer class
77
class Installer

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.2.5</version>
14+
<version>1.2.6</version>
1515
<name>rp5extras</name>
1616
<description>rp5extras for JRubyArt</description>
1717
<url>https://github.com/ruby-processing/JRubyArt</url>
@@ -56,7 +56,7 @@ DO NOT MODIFIY - GENERATED CODE
5656
<dependency>
5757
<groupId>org.processing</groupId>
5858
<artifactId>core</artifactId>
59-
<version>3.2.1</version>
59+
<version>3.2.3</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.processing</groupId>

0 commit comments

Comments
 (0)