Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Jun 13, 2017
1 parent 8de3f54 commit dc623fd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

**v1.0.0** About time we got to 1.0.0 bump processing to 3.3.4

**v0.9.3** Bump processing version to processing-3.3.2.

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

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
gem install toxiclibs
```

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

NB: Build is only failing because current version of processing is not available at maven central.
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.
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).

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

Expand Down
2 changes: 1 addition & 1 deletion lib/toxiclibs/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
# wrapper to give version a meaningful name
module Toxiclibs
VERSION = '0.9.3'.freeze
VERSION = '1.0.0'.freeze
end
4 changes: 2 additions & 2 deletions pom.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project 'toxiclibs' do

model_version '4.0.0'
id 'ruby-processing:toxiclibs:0.9.3'
id 'ruby-processing:toxiclibs:1.0.0'
packaging 'jar'

description 'toxiclibs-library for JRubyArt'
Expand Down Expand Up @@ -29,7 +29,7 @@
)

jar 'args4j:args4j:2.0.31'
jar 'org.processing:core:3.3.2'
jar 'org.processing:core:3.3.4'

plugin( :compiler, '3.5.1',
'source' => '1.8',
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
<modelVersion>4.0.0</modelVersion>
<groupId>ruby-processing</groupId>
<artifactId>toxiclibs</artifactId>
<version>0.9.3</version>
<version>1.0.0</version>
<name>toxiclibs</name>
<description>toxiclibs-library for JRubyArt</description>
<organization>
Expand Down Expand Up @@ -58,7 +58,7 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>org.processing</groupId>
<artifactId>core</artifactId>
<version>3.3.2</version>
<version>3.3.4</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit dc623fd

Please sign in to comment.