Skip to content

Commit

Permalink
update processing
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Mar 21, 2017
1 parent 2a14138 commit d29b01c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

**v0.9.2** Bump processing version

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

**v0.9.0** Updated maven artifacts, somewhat arbitarily require JRubyArt-1.2+
Expand Down
2 changes: 1 addition & 1 deletion lib/toxiclibs/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Toxiclibs
VERSION = '0.9.1'.freeze
VERSION = '0.9.2'.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.1'
id 'ruby-processing:toxiclibs:0.9.2'
packaging 'jar'

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

jar 'org.jogamp.joal:joal-main:2.3.1'
jar 'args4j:args4j:2.0.31'
jar 'org.processing:core:3.2.1'
jar 'org.processing:core:3.3.0'

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.1</version>
<version>0.9.2</version>
<name>toxiclibs</name>
<description>toxiclibs-library for JRubyArt</description>
<organization>
Expand Down Expand Up @@ -63,7 +63,7 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>org.processing</groupId>
<artifactId>core</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
</dependency>
</dependencies>
<build>
Expand Down
11 changes: 5 additions & 6 deletions toxiclibs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@ Gem::Specification.new do |spec|
spec.name = 'toxiclibs'
spec.version = Toxiclibs::VERSION
spec.has_rdoc = true
spec.extra_rdoc_files = %w{README.md LICENSE.md}
spec.summary = %q{Updated and extended toxiclibs libraries for JRubyArt}
spec.extra_rdoc_files = %w(README.md LICENSE.md)
spec.summary = %q(Updated and extended toxiclibs libraries for JRubyArt and propane)
spec.description =<<-EOS
Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.2.5 and processing-3.2.1
Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.0 and processing-3.3
EOS
spec.licenses = %w{MIT LGPL-3.0}
spec.authors = %w{Karsten\ Schmidt Martin\ Prout}
spec.licenses = %w(MIT LGPL-3.0)
spec.authors = %w(Karsten\ Schmidt Martin\ Prout)
spec.email = 'mamba2928@yahoo.co.uk'
spec.homepage = 'http://ruby-processing.github.io/toxicgem/'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.files << 'lib/toxiclibs.jar'
spec.files << 'lib/args4j-2.0.31.jar'
spec.files << 'lib/joal-2.3.1.jar'
spec.require_paths = ['lib']
spec.add_dependency 'jruby_art', '~> 1.2'
spec.add_development_dependency 'rake', '~> 11.2', '>= 11.2.2'
end

0 comments on commit d29b01c

Please sign in to comment.