Skip to content

Commit 5d4b1f6

Browse files
committed
get ready for release
1 parent 6395c4a commit 5d4b1f6

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
**v1.4.2** Possible fix for windows `library_loader`
1+
**v1.4.3** Features example sketches using the PixelFlow library by Thomas Diewald
2+
3+
**v1.4.2** Fix for windows `library_loader` thanks to Thomas Diewald
24

35
**v1.4.1** Update to processing-3.3.6, and jruby-complete-9.1.13.0.
46

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ k9 --live sketch.rb # pry is bound to $app # needs `jruby -S gem install pry`
8989
```
9090
## Example sketches
9191

92-
[Worked Examples](https://github.com/ruby-processing/JRubyArt-examples) more to follow, feel free to add your own, especially ruby-2.2+ syntax now we can. These can now be downloaded using `k9 --install` please move existing `k9_samples` if you wish to keep them.
92+
[Worked Examples](https://github.com/ruby-processing/JRubyArt-examples) more to follow, feel free to add your own, especially ruby-2.2+ syntax now we can. These can now be downloaded using `k9 --install` please move existing `k9_samples` if you wish to keep them. The current release features several PixelFlow glsl library examples, including a few shadertoy demos as sketches.
9393

9494
## Conversion Tool
9595

jruby_art.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Gem::Specification.new do |spec|
1212
spec.description = <<-EOS
1313
JRubyArt is a ruby wrapper for the processing art framework, with enhanced
1414
functionality. Use both processing libraries and ruby gems in your sketches.
15-
Features create/run/watch/live modes.
15+
Features create/run/watch/live modes. The current release features several
16+
PixelFlow glsl library examples, including a few shadertoy demos as sketches.
1617
EOS
1718
spec.summary = %q{Code as Art, Art as Code. Processing and Ruby are meant for each other.}
1819
spec.homepage = "https://ruby-processing.github.io/JRubyArt/"

lib/jruby_art/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
# A wrapper for version
33
module JRubyArt
4-
VERSION = '1.4.2'.freeze
4+
VERSION = '1.4.3'.freeze
55
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project 'rp5extras', 'https://github.com/ruby-processing/JRubyArt' do
33

44
model_version '4.0.0'
5-
id 'ruby-processing:rp5extras', '1.4.2'
5+
id 'ruby-processing:rp5extras', '1.4.3'
66
packaging 'jar'
77

88
description 'rp5extras for JRubyArt'
@@ -32,7 +32,7 @@
3232
'jruby.api' => 'http://jruby.org/apidocs/'
3333
)
3434

35-
pom 'org.jruby:jruby:9.1.12.0'
35+
pom 'org.jruby:jruby:9.1.13.0'
3636
jar 'org.processing:core:3.3.6'
3737
jar 'org.processing:video:3.0.2'
3838
plugin_management do

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>ruby-processing</groupId>
1313
<artifactId>rp5extras</artifactId>
14-
<version>1.4.2</version>
14+
<version>1.4.3</version>
1515
<name>rp5extras</name>
1616
<description>rp5extras for JRubyArt</description>
1717
<url>https://github.com/ruby-processing/JRubyArt</url>
@@ -50,7 +50,7 @@ DO NOT MODIFIY - GENERATED CODE
5050
<dependency>
5151
<groupId>org.jruby</groupId>
5252
<artifactId>jruby</artifactId>
53-
<version>9.1.12.0</version>
53+
<version>9.1.13.0</version>
5454
<type>pom</type>
5555
</dependency>
5656
<dependency>

vendors/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ EOS
1111

1212
JRUBYC_VERSION = '9.1.13.0'
1313

14-
EXAMPLES = '2.4'
14+
EXAMPLES = '2.5'
1515
HOME_DIR = ENV['HOME']
1616
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1717

0 commit comments

Comments
 (0)