Skip to content

Commit 13e33f1

Browse files
committed
bump to jruby-9.2.4.0
1 parent ed41092 commit 13e33f1

File tree

9 files changed

+14
-12
lines changed

9 files changed

+14
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
dist: trusty
44

55
rvm:
6-
- jruby-9.2.3.0
6+
- jruby-9.2.4.0
77
jdk:
88
- oraclejdk8
99
os:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
v0.4.2 Update to jruby-9.2.3.0
1+
v0.4.3 Update to jruby-9.2.4.0
2+
3+
v0.4.2 Update to jruby-9.2.4.0
24

35
v0.4.1 Proper sensible release since we can install from rubygems with jruby-9.2.1.0
46

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
1818
```bash
1919
cd PiCrate
2020
rake # assumes an installed version of vanilla processing
21-
jgem install picrate-0.4.1-java.gem
21+
jgem install picrate-0.4.3-java.gem
2222
```
2323
To create a template sketch:-
2424
```bash

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ end
2929

3030
desc 'Install'
3131
task :install do
32-
sh 'mv target/picrate-0.4.1.jar lib'
32+
sh 'mv target/picrate-0.4.3.jar lib'
3333
end
3434

3535
desc 'Gem'

docs/_posts/2018-05-06-install_jruby.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Get the latest version from [http://jruby.org/download][download]
1111

1212
```bash
1313
cd /opt
14-
sudo tar xzvf /pathToDownload/jruby-bin-9.2.3.0.tar.gz
14+
sudo tar xzvf /pathToDownload/jruby-bin-9.2.4.0.tar.gz
1515
```
1616

1717
Then use the excellent `update-alternatives` tool to provide symbolic links to `jruby`, `jgem`, `jirb` and `rake` especially if you haven't installed `mri` ruby.
@@ -33,4 +33,4 @@ export PATH="${PATH}:${GEM_PATH}/bin"
3333

3434
If you know better please post on wiki
3535

36-
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.3.0/jruby-bin-9.2.3.0.tar.gz
36+
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.4.0/jruby-bin-9.2.4.0.tar.gz

lib/picrate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module PiCrate
3-
VERSION = '0.4.2'.freeze
3+
VERSION = '0.4.3'.freeze
44
end

picrate.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
1515
gem.summary = %q{ruby wrapper for processing-3.4 on raspberrypi and linux64}
1616
gem.homepage = 'https://ruby-processing.github.io/PiCrate/'
1717
gem.files = `git ls-files`.split($/)
18-
gem.files << 'lib/picrate-0.4.1.jar'
18+
gem.files << 'lib/picrate-0.4.3.jar'
1919
gem.files << 'lib/gluegen-rt.jar'
2020
gem.files << 'lib/jogl-all.jar'
2121
gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project 'picrate', 'http://maven.apache.org' do
22

33
model_version '4.0.0'
4-
id 'ruby-processing:picrate:0.4.2'
4+
id 'ruby-processing:picrate:0.4.3'
55
packaging 'jar'
66

77
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -31,7 +31,7 @@
3131
'project.build.sourceEncoding' => 'utf-8',
3232
'polyglot.dump.pom' => 'pom.xml',
3333
'maven.compiler.source' => '1.8' )
34-
pom 'org.jruby:jruby:9.2.3.0'
34+
pom 'org.jruby:jruby:9.2.4.0'
3535
jar 'org.processing:video:3.2.3'
3636
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
3737
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>ruby-processing</groupId>
1313
<artifactId>picrate</artifactId>
14-
<version>0.4.2</version>
14+
<version>0.4.3</version>
1515
<name>picrate</name>
1616
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
1717
<url>http://maven.apache.org</url>
@@ -78,7 +78,7 @@ DO NOT MODIFIY - GENERATED CODE
7878
<dependency>
7979
<groupId>org.jruby</groupId>
8080
<artifactId>jruby</artifactId>
81-
<version>9.2.3.0</version>
81+
<version>9.2.4.0</version>
8282
<type>pom</type>
8383
</dependency>
8484
<dependency>

0 commit comments

Comments
 (0)