From b5a0aa805a933e8c6646d254339b3c140474f0a0 Mon Sep 17 00:00:00 2001 From: monkstone Date: Fri, 14 May 2021 15:48:22 +0100 Subject: [PATCH] Get ready to release --- CHANGELOG.md | 2 ++ README.md | 2 +- lib/picrate/version.rb | 2 +- pom.rb | 4 ++-- vendors/Rakefile | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87bef72..7acf741 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 7b18e9a..94320c6 100644 --- a/README.md +++ b/README.md @@ -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:- diff --git a/lib/picrate/version.rb b/lib/picrate/version.rb index 77d6992..68438d9 100644 --- a/lib/picrate/version.rb +++ b/lib/picrate/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PiCrate - VERSION = '2.4.0' + VERSION = '2.4.1' end diff --git a/pom.rb b/pom.rb index 0b7e2ae..1638791 100644 --- a/pom.rb +++ b/pom.rb @@ -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.' @@ -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' diff --git a/vendors/Rakefile b/vendors/Rakefile index daf5db1..44a96b9 100644 --- a/vendors/Rakefile +++ b/vendors/Rakefile @@ -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')