Skip to content

Commit

Permalink
bump to jruby-9.2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Nov 14, 2018
1 parent ed41092 commit 13e33f1
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: false
dist: trusty

rvm:
- jruby-9.2.3.0
- jruby-9.2.4.0
jdk:
- oraclejdk8
os:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
v0.4.2 Update to jruby-9.2.3.0
v0.4.3 Update to jruby-9.2.4.0

v0.4.2 Update to jruby-9.2.4.0

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Requires maven, [jdk8][oracle] (but could be openjdk), and a jruby install.
```bash
cd PiCrate
rake # assumes an installed version of vanilla processing
jgem install picrate-0.4.1-java.gem
jgem install picrate-0.4.3-java.gem
```
To create a template sketch:-
```bash
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ end

desc 'Install'
task :install do
sh 'mv target/picrate-0.4.1.jar lib'
sh 'mv target/picrate-0.4.3.jar lib'
end

desc 'Gem'
Expand Down
4 changes: 2 additions & 2 deletions docs/_posts/2018-05-06-install_jruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Get the latest version from [http://jruby.org/download][download]

```bash
cd /opt
sudo tar xzvf /pathToDownload/jruby-bin-9.2.3.0.tar.gz
sudo tar xzvf /pathToDownload/jruby-bin-9.2.4.0.tar.gz
```

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.
Expand All @@ -33,4 +33,4 @@ export PATH="${PATH}:${GEM_PATH}/bin"

If you know better please post on wiki

[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.3.0/jruby-bin-9.2.3.0.tar.gz
[download]:https://s3.amazonaws.com/jruby.org/downloads/9.2.4.0/jruby-bin-9.2.4.0.tar.gz
2 changes: 1 addition & 1 deletion lib/picrate/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module PiCrate
VERSION = '0.4.2'.freeze
VERSION = '0.4.3'.freeze
end
2 changes: 1 addition & 1 deletion picrate.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
gem.summary = %q{ruby wrapper for processing-3.4 on raspberrypi and linux64}
gem.homepage = 'https://ruby-processing.github.io/PiCrate/'
gem.files = `git ls-files`.split($/)
gem.files << 'lib/picrate-0.4.1.jar'
gem.files << 'lib/picrate-0.4.3.jar'
gem.files << 'lib/gluegen-rt.jar'
gem.files << 'lib/jogl-all.jar'
gem.files << 'lib/gluegen-rt-natives-linux-amd64.jar'
Expand Down
4 changes: 2 additions & 2 deletions pom.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project 'picrate', 'http://maven.apache.org' do

model_version '4.0.0'
id 'ruby-processing:picrate:0.4.2'
id 'ruby-processing:picrate:0.4.3'
packaging 'jar'

description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
Expand Down Expand Up @@ -31,7 +31,7 @@
'project.build.sourceEncoding' => 'utf-8',
'polyglot.dump.pom' => 'pom.xml',
'maven.compiler.source' => '1.8' )
pom 'org.jruby:jruby:9.2.3.0'
pom 'org.jruby:jruby:9.2.4.0'
jar 'org.processing:video:3.2.3'
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
<modelVersion>4.0.0</modelVersion>
<groupId>ruby-processing</groupId>
<artifactId>picrate</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<name>picrate</name>
<description>An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.</description>
<url>http://maven.apache.org</url>
Expand Down Expand Up @@ -78,7 +78,7 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
<version>9.2.3.0</version>
<version>9.2.4.0</version>
<type>pom</type>
</dependency>
<dependency>
Expand Down

0 comments on commit 13e33f1

Please sign in to comment.