Skip to content

Commit 4e215fe

Browse files
committed
Bump version
1 parent f78010a commit 4e215fe

File tree

8 files changed

+18
-12
lines changed

8 files changed

+18
-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.1.0
6+
- jruby-9.2.2.0
77
jdk:
88
- oraclejdk8
99
os:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
v0.4.2 Update to jruby-9.2.2.0
2+
13
v0.4.1 Proper sensible release since we can install from rubygems with jruby-9.2.1.0
4+
25
v0.0.4 LSystem examples
6+
37
v0.0.3
48
Extended Samples
9+
510
v0.0.2
611
Attempt to set native folder for armv6hf
12+
713
v0.0.1
814
First iteration with drivers as used by processing.org

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ task default: [:init, :compile, :install, :test, :gem]
1717
desc 'Create Manifest and Copy Jars'
1818
task :init do
1919
create_manifest
20-
processing_root = File.dirname(`readlink -f $(which processing)`)
20+
fprocessing_root = File.dirname(`readlink -f $(which processing)`)
2121
# processing_root = '/home/tux/processing-3.4'
2222
jar_dir = File.join(processing_root, 'core', 'library')
2323
opengl = Dir.entries(jar_dir).grep(/amd64|armv6hf/).select { |jar| jar =~ /linux/ }

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.1.0.tar.gz
14+
sudo tar xzvf /pathToDownload/jruby-bin-9.2.2.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.1.0/jruby-bin-9.2.1.0.tar.gz
36+
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.2.0/jruby-bin-9.2.2.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.1'.freeze
3+
VERSION = '0.4.2'.freeze
44
end

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.1'
4+
id 'ruby-processing:picrate:0.4.2'
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.1.0'
34+
pom 'org.jruby:jruby:9.2.2.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.1</version>
14+
<version>0.4.2</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.0.0</version>
81+
<version>9.2.2.0</version>
8282
<type>pom</type>
8383
</dependency>
8484
<dependency>

vendors/Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ WARNING = <<-EOS
66
the correct version of picrate-examples (see EXAMPLES vendors directory)
77
EOS
88
SOUND = 'sound.zip'.freeze
9-
SOUND_VERSION = 'v1.3.2' # version 1.3.2
9+
SOUND_VERSION = 'v1.3.2'
1010
GLVIDEO = 'processing-glvideo.zip'
1111
VIDEO = 'video-2.zip'
12-
VIDEO_VERSION = '2' # version 1.0.1
13-
EXAMPLES = '0.0.7'.freeze
12+
VIDEO_VERSION = '2'
13+
EXAMPLES = '0.0.8'.freeze
1414
HOME_DIR = ENV['HOME']
1515
PI_OR_LINUX = /linux|arm/ =~ RbConfig::CONFIG['host_os']
1616

0 commit comments

Comments
 (0)