Skip to content

Commit b5a0aa8

Browse files
committed
Get ready to release
1 parent be6dc87 commit b5a0aa8

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v2.4.1 patch library loader, add PGS library examples.
2+
13
v2.4.0 Refactor noise to two modules, FastNoise (default) & SmoothNoise, with terrain noise `:tnoise` option.
24

35
v2.3.0 Abandon Processing Value Noise in favour of OpenSimplex2, with choosable options. Added pdf library using iText5.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Requires java to build (and [jogl-2.4.0-rc jars][jogl_jars]), but uses a maven w
1919
```bash
2020
cd PiCrate # or whatever you call it
2121
rake # assumes an installed version of vanilla processing
22-
jgem install picrate-2.4.0-java.gem
22+
jgem install picrate-2.4.1-java.gem
2323

2424
```
2525
To create a template sketch:-

lib/picrate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PiCrate
4-
VERSION = '2.4.0'
4+
VERSION = '2.4.1'
55
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
project 'picrate', 'http://maven.apache.org' do
44
model_version '4.0.0'
5-
id 'ruby-processing:picrate:2.4.0'
5+
id 'ruby-processing:picrate:2.4.1'
66
packaging 'jar'
77

88
description 'An integrated processing-core (somewhat hacked), with additional java code for a jruby version of processing.'
@@ -33,7 +33,7 @@
3333
'project.build.sourceEncoding' => 'UTF-8',
3434
'polyglot.dump.pom' => 'pom.xml')
3535

36-
pom 'org.jruby:jruby:9.2.16.0'
36+
pom 'org.jruby:jruby:9.2.17.0'
3737
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
3838
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
3939
jar 'org.processing:video:3.0.2'

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SOUND = 'sound.zip'
88
PROCESSING_GITHUB = 'https://github.com/processing'
99
VIDEO = 'video.zip'
1010
DOWNLOAD = 'releases/download/latest'
11-
EXAMPLES = '0.5.7'
11+
EXAMPLES = '0.5.8'
1212
HOME_DIR = ENV['HOME']
1313
LIBRARY = File.join(HOME_DIR, '.picrate', 'libraries')
1414
PROJECT_DIR = File.join(HOME_DIR, 'projects')

0 commit comments

Comments
 (0)