Skip to content

Commit dc623fd

Browse files
committed
bump version
1 parent 8de3f54 commit dc623fd

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

2+
**v1.0.0** About time we got to 1.0.0 bump processing to 3.3.4
3+
24
**v0.9.3** Bump processing version to processing-3.3.2.
35

4-
**v0.9.2** Bump processing version, add `to_ruby_string` method to `ColorList` see examples, allow use of `TColor` without `Toxi` prefix. Removed audio.
6+
**v0.9.2** Bump processing version, add `to_ruby_string` method to `ColorList` see examples, allow use of `TColor` without `Toxi` prefix. Removed audio.
57

68
**v0.9.1** Make it easier to load PerlinNoise and SimplexNoise
79

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
gem install toxiclibs
99
```
1010

11-
### NB: Use version 0.4 for ruby-processing, and 0.9.2 for propane and JRubyArt
11+
### NB: Use version 0.4 for ruby-processing, and 1.0.0 for propane and JRubyArt
1212

1313
NB: Build is only failing because current version of processing is not available at maven central.
14-
This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars for JRubyArt. To compile the gem follow the instructions for [JRubyArt][]. Most parts of toxiclibs API is exposed in the latest version, (but only a few examples are included) in principle it should be possible to make all available!!! For this demonstration I have used up to date source code for version 21, since [toxis final release][] has not yet been released (although [Dan Shiffman][] has released a version for processing-3.0+). There are reported to be number of outstanding bugs with toxiclibs, if they affect you report it [here][] (or better fix them yourself and submit a pull request). Version 0.9.2 features java code updated to use java lambda (jdk8) and was compiled against processing-3.3 core.jar. The audio library was not working and has been dropped since version 0.9.2.
14+
This gem provides Karsten Schmidts (aka toxi, @postspectacular) toxiclibs jars for JRubyArt. To compile the gem follow the instructions for [JRubyArt][]. Most parts of toxiclibs API is exposed in the latest version, (but only a few examples are included) in principle it should be possible to make all available!!! For this demonstration I have used up to date source code for version 21, since [toxis final release][] has not yet been released (although [Dan Shiffman][] has released a version for processing-3.0+). There are reported to be number of outstanding bugs with toxiclibs, if they affect you report it [here][] (or better fix them yourself and submit a pull request).
1515

1616
![grayscott image](http://4.bp.blogspot.com/-d4MiL4_0Njk/VFJMv6VUicI/AAAAAAAAEgY/fFAfrXDxNXM/s400/grayscott.png)
1717

lib/toxiclibs/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
# wrapper to give version a meaningful name
33
module Toxiclibs
4-
VERSION = '0.9.3'.freeze
4+
VERSION = '1.0.0'.freeze
55
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project 'toxiclibs' do
22

33
model_version '4.0.0'
4-
id 'ruby-processing:toxiclibs:0.9.3'
4+
id 'ruby-processing:toxiclibs:1.0.0'
55
packaging 'jar'
66

77
description 'toxiclibs-library for JRubyArt'
@@ -29,7 +29,7 @@
2929
)
3030

3131
jar 'args4j:args4j:2.0.31'
32-
jar 'org.processing:core:3.3.2'
32+
jar 'org.processing:core:3.3.4'
3333

3434
plugin( :compiler, '3.5.1',
3535
'source' => '1.8',

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>toxiclibs</artifactId>
14-
<version>0.9.3</version>
14+
<version>1.0.0</version>
1515
<name>toxiclibs</name>
1616
<description>toxiclibs-library for JRubyArt</description>
1717
<organization>
@@ -58,7 +58,7 @@ DO NOT MODIFIY - GENERATED CODE
5858
<dependency>
5959
<groupId>org.processing</groupId>
6060
<artifactId>core</artifactId>
61-
<version>3.3.2</version>
61+
<version>3.3.4</version>
6262
</dependency>
6363
</dependencies>
6464
<build>

0 commit comments

Comments
 (0)