Skip to content

Commit

Permalink
Get ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed May 14, 2021
1 parent be6dc87 commit b5a0aa8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
v2.4.1 patch library loader, add PGS library examples.

v2.4.0 Refactor noise to two modules, FastNoise (default) & SmoothNoise, with terrain noise `:tnoise` option.

v2.3.0 Abandon Processing Value Noise in favour of OpenSimplex2, with choosable options. Added pdf library using iText5.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Requires java to build (and [jogl-2.4.0-rc jars][jogl_jars]), but uses a maven w
```bash
cd PiCrate # or whatever you call it
rake # assumes an installed version of vanilla processing
jgem install picrate-2.4.0-java.gem
jgem install picrate-2.4.1-java.gem

```
To create a template sketch:-
Expand Down
2 changes: 1 addition & 1 deletion lib/picrate/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module PiCrate
VERSION = '2.4.0'
VERSION = '2.4.1'
end
4 changes: 2 additions & 2 deletions pom.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

project 'picrate', 'http://maven.apache.org' do
model_version '4.0.0'
id 'ruby-processing:picrate:2.4.0'
id 'ruby-processing:picrate:2.4.1'
packaging 'jar'

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

pom 'org.jruby:jruby:9.2.16.0'
pom 'org.jruby:jruby:9.2.17.0'
jar 'org.jogamp.jogl:jogl-all:${jogl.version}'
jar 'org.jogamp.gluegen:gluegen-rt-main:${jogl.version}'
jar 'org.processing:video:3.0.2'
Expand Down
2 changes: 1 addition & 1 deletion vendors/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SOUND = 'sound.zip'
PROCESSING_GITHUB = 'https://github.com/processing'
VIDEO = 'video.zip'
DOWNLOAD = 'releases/download/latest'
EXAMPLES = '0.5.7'
EXAMPLES = '0.5.8'
HOME_DIR = ENV['HOME']
LIBRARY = File.join(HOME_DIR, '.picrate', 'libraries')
PROJECT_DIR = File.join(HOME_DIR, 'projects')
Expand Down

0 comments on commit b5a0aa8

Please sign in to comment.