Skip to content

Commit 16409ff

Browse files
committed
bump version
1 parent 8b33f2d commit 16409ff

File tree

8 files changed

+27
-14
lines changed

8 files changed

+27
-14
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: ruby
2+
sudo: false
3+
4+
rvm:
5+
- jruby-9.1.12.0
6+
jdk:
7+
- oraclejdk8
8+
os:
9+
- linux

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v1.0.2** Bump for processing and jsoup updates add travis
2+
13
**v1.0.1** Supports Placers, specifically ShapeBasedPlacer, and Observer (hence callbacks)
24

35
**v1.0.0** First release depends on WordCram-1.0 to supply jars

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def create_manifest
66
File.open('MANIFEST.MF', 'w') do |f|
77
f.puts(title)
88
f.puts(version)
9-
f.puts('Class-Path: jsoup-1.10.2.jar')
9+
f.puts('Class-Path: jsoup-1.10.3.jar')
1010
end
1111
end
1212

lib/ruby_wordcram.rb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# frozen_string_literal: false
2+
23
if RUBY_PLATFORM == 'java'
34
require 'WordCram.jar'
4-
require 'jsoup-1.10.2.jar'
5-
wc = %w(WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason)
6-
sh = %w(Colorers ImageShaper Observer Placers Word ShapeBasedPlacer)
5+
require 'jsoup-1.10.3.jar'
6+
wc = %w[WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason]
7+
sh = %w[Colorers ImageShaper Observer Placers Word ShapeBasedPlacer]
78
WC = wc.concat(sh).freeze
89
WC.each do |klass|
910
java_import "wordcram.#{klass}"

lib/ruby_wordcram/version.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# frozen_string_literal: true
2+
23
module WordCram
3-
VERSION = '2.0.0'.freeze
4+
VERSION = '2.0.1'.freeze
45
end

pom.rb

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

33
model_version '4.0.0'
4-
id 'wordcram:WordCram:2.0.0'
4+
id 'wordcram:WordCram:2.0.1'
55
packaging 'jar'
66
description 'WordCram for JRubyArt and propane'
77
organization 'ruby-processing', 'https://ruby-processing.github.io'
@@ -30,8 +30,8 @@
3030
} )
3131
end
3232

33-
jar 'org.processing:core:3.3.0'
34-
jar 'org.jsoup:jsoup:1.10.2'
33+
jar 'org.processing:core:3.3.4'
34+
jar 'org.jsoup:jsoup:1.10.3'
3535

3636
build do
3737
default_goal 'package'
@@ -50,7 +50,7 @@
5050
execute_goals( id: 'default-cli',
5151
artifactItems: [ { groupId: 'org.jsoup',
5252
artifactId: 'jsoup',
53-
version: '1.10.2',
53+
version: '1.10.3',
5454
type: 'jar',
5555
outputDirectory: '${wordcram.basedir}/lib'
5656
}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ DO NOT MODIFIY - GENERATED CODE
5353
<dependency>
5454
<groupId>org.processing</groupId>
5555
<artifactId>core</artifactId>
56-
<version>3.3.0</version>
56+
<version>3.3.4</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.jsoup</groupId>
6060
<artifactId>jsoup</artifactId>
61-
<version>1.10.2</version>
61+
<version>1.10.3</version>
6262
</dependency>
6363
</dependencies>
6464
<build>
@@ -100,7 +100,7 @@ DO NOT MODIFIY - GENERATED CODE
100100
<artifactItem>
101101
<groupId>org.jsoup</groupId>
102102
<artifactId>jsoup</artifactId>
103-
<version>1.10.2</version>
103+
<version>1.10.3</version>
104104
<type>jar</type>
105105
<outputDirectory>${wordcram.basedir}/lib</outputDirectory>
106106
</artifactItem>

ruby_wordcram.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ Gem::Specification.new do |spec|
1010
spec.extra_rdoc_files = %w{README.md LICENSE}
1111
spec.summary = %q{Updated and extended WordCram library for JRubyArt and propane}
1212
spec.description =<<-EOS
13-
WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.3 and processing-3.3
13+
WordCram library wrapped in a rubygem. Compiled and tested with JRubyArt-1.3.3 and processing-3.4
1414
EOS
1515
spec.licenses = %w{Apache-2.0}
1616
spec.authors = %w{Dan\ Bernier Jonathan\ Feinberg Martin\ Prout}
1717
spec.email = 'mamba2928@yahoo.co.uk'
1818
spec.homepage = 'http://ruby-processing.github.io/WordCram/'
1919
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
2020
spec.files << 'lib/WordCram.jar'
21-
spec.files << 'lib/jsoup-1.10.2.jar'
21+
spec.files << 'lib/jsoup-1.10.3.jar'
2222
spec.require_paths = ['lib']
2323
spec.add_development_dependency 'rake', '~> 12', '>= 12.0'
2424
end

0 commit comments

Comments
 (0)