Skip to content

Commit 72b4cf8

Browse files
committed
Bump version
1 parent 9545d45 commit 72b4cf8

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v2.6.0 Update to JRuby-9.3.3.0,require jdk 17+
2+
13
v2.5.2 Update to JRuby-9.3.2.0.
24

35
v2.5.1 Update to JRuby-9.3.1.0, under the hood changes in how we access java fields, no using `field` in place of `declared_field`, possible since JRuby-9.3.0.0 required since JRuby-9.3.2.0.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__C6H3N3O7__ [![Gem Version](https://badge.fury.io/rb/picrate.svg)](https://badge.fury.io/rb/picrate)![Travis CI](https://travis-ci.org/ruby-processing/PiCrate.svg)
22

33
# PiCrate
4-
Version for `Raspberry Pi OS` on raspberryPI 3B+ works with jdk11 (reflective access warnings fixed for jdk11). That also works on 64 bit `ManjaroArm` distro on RaspberryPI4. Create processing sketches in ruby on raspberry-pi and linux (this project is a parallel development of [propane][propane] targetting the raspberry-pi, but will initially be developed on a regular linux box). The aim is to produce a gem installable app that can be run with jruby, with minimal dependencies. Drop the `C` and you get pirate, or and an `e` and get `PiCreate`, a happy coincidence?
4+
Version for `Raspberry Pi OS` on raspberryPI 3B+ works with jdk17. That also works on 64 bit `ManjaroArm` distro on RaspberryPI4. Create processing sketches in ruby on raspberry-pi and linux (this project is a parallel development of [propane][propane] targetting the raspberry-pi, but will initially be developed on a regular linux box). The aim is to produce a gem installable app that can be run with jruby, with minimal dependencies. Drop the `C` and you get pirate, or and an `e` and get `PiCreate`, a happy coincidence?
55

66

77
### To install from rubygems ###

lib/picrate/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PiCrate
4-
VERSION = '2.5.2'
4+
VERSION = '2.6.0'
55
end

picrate.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Gem::Specification.new do |gem|
3636
gem.add_runtime_dependency 'arcball', '~> 1.2'
3737
gem.require_paths = ['lib']
3838
gem.platform = 'java'
39-
gem.requirements << 'java runtime == 11+'
39+
gem.requirements << 'java runtime == 17+'
4040
end

pom.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
issue_management 'https://github.com/ruby-processing/PiCrate/issues', 'Github'
2525
# Need to update to jogl 2.4.1 as soon as available, then make a dependency
2626
properties('jogl.version' => '2.3.2',
27-
'jruby.version' => '9.3.2.0',
27+
'jruby.version' => '9.3.3.0',
2828
'batik.version' => '1.14',
2929
'itextpdf.version' => '5.5.13.2',
3030
'jruby.api' => 'http://jruby.org/apidocs/',
@@ -63,7 +63,7 @@
6363
)
6464
end
6565
plugin(:compiler, '3.8.1',
66-
'release' => '11')
66+
'release' => '17')
6767
plugin(:javadoc, '2.10.4',
6868
'detectOfflineLinks' => 'false',
6969
'links' => ['${processing.api}',

0 commit comments

Comments
 (0)