File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed
Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 11
2+ ** v0.9.2** Bump processing version
3+
24** v0.9.1** Make it easier to load PerlinNoise and SimplexNoise
35
46** v0.9.0** Updated maven artifacts, somewhat arbitarily require JRubyArt-1.2+
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22module Toxiclibs
3- VERSION = '0.9.1 ' . freeze
3+ VERSION = '0.9.2 ' . freeze
44end
Original file line number Diff line number Diff line change 11project 'toxiclibs' do
22
33 model_version '4.0.0'
4- id 'ruby-processing:toxiclibs:0.9.1 '
4+ id 'ruby-processing:toxiclibs:0.9.2 '
55 packaging 'jar'
66
77 description 'toxiclibs-library for JRubyArt'
3030
3131 jar 'org.jogamp.joal:joal-main:2.3.1'
3232 jar 'args4j:args4j:2.0.31'
33- jar 'org.processing:core:3.2.1 '
33+ jar 'org.processing:core:3.3.0 '
3434
3535 plugin ( :compiler , '3.5.1' ,
3636 'source' => '1.8' ,
Original file line number Diff line number Diff 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.1 </version >
14+ <version >0.9.2 </version >
1515 <name >toxiclibs</name >
1616 <description >toxiclibs-library for JRubyArt</description >
1717 <organization >
@@ -63,7 +63,7 @@ DO NOT MODIFIY - GENERATED CODE
6363 <dependency >
6464 <groupId >org.processing</groupId >
6565 <artifactId >core</artifactId >
66- <version >3.2.1 </version >
66+ <version >3.3.0 </version >
6767 </dependency >
6868 </dependencies >
6969 <build >
Original file line number Diff line number Diff line change @@ -7,20 +7,19 @@ Gem::Specification.new do |spec|
77 spec . name = 'toxiclibs'
88 spec . version = Toxiclibs ::VERSION
99 spec . has_rdoc = true
10- spec . extra_rdoc_files = %w{ README.md LICENSE.md }
11- spec . summary = %q{ Updated and extended toxiclibs libraries for JRubyArt}
10+ spec . extra_rdoc_files = %w( README.md LICENSE.md )
11+ spec . summary = %q( Updated and extended toxiclibs libraries for JRubyArt and propane)
1212 spec . description = <<-EOS
13- Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.2.5 and processing-3.2.1
13+ Toxiclibs java libraries wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.0 and processing-3.3
1414 EOS
15- spec . licenses = %w{ MIT LGPL-3.0 }
16- spec . authors = %w{ Karsten\ Schmidt Martin\ Prout }
15+ spec . licenses = %w( MIT LGPL-3.0 )
16+ spec . authors = %w( Karsten\ Schmidt Martin\ Prout )
17171818 spec . homepage = 'http://ruby-processing.github.io/toxicgem/'
1919 spec . files = `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{^(test|spec|features)/} ) }
2020 spec . files << 'lib/toxiclibs.jar'
2121 spec . files << 'lib/args4j-2.0.31.jar'
2222 spec . files << 'lib/joal-2.3.1.jar'
2323 spec . require_paths = [ 'lib' ]
24- spec . add_dependency 'jruby_art' , '~> 1.2'
2524 spec . add_development_dependency 'rake' , '~> 11.2' , '>= 11.2.2'
2625end
You can’t perform that action at this time.
0 commit comments