Skip to content

Commit aa0339b

Browse files
committed
bump jsoup version etc
1 parent 4e3e1f8 commit aa0339b

10 files changed

Lines changed: 559 additions & 65 deletions

File tree

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<extension>
44
<groupId>io.takari.polyglot</groupId>
55
<artifactId>polyglot-ruby</artifactId>
6-
<version>0.4.0</version>
6+
<version>0.4.4</version>
77
</extension>
88
</extensions>

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v2.0.5**
2+
Bump jsoup version for PiCrate-1.2.2+, JRubyArt-1.2.2+, propane-3.4.0+
3+
14
**v2.0.4**
25
JRubyArt-1.6.3 and processing-3.5.3
36

Rakefile

Lines changed: 3 additions & 3 deletions
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.3.jar')
9+
f.puts('Class-Path: jsoup-1.12.1.jar')
1010
end
1111
end
1212

@@ -19,7 +19,7 @@ end
1919

2020
desc 'Install'
2121
task :install do
22-
sh 'mvn dependency:copy'
22+
sh './mvnw dependency:copy'
2323
sh 'mv target/WordCram.jar lib'
2424
end
2525

@@ -30,5 +30,5 @@ end
3030

3131
desc 'Compile'
3232
task :compile do
33-
sh 'mvn package'
33+
sh './mvnw package'
3434
end

lib/ruby_wordcram.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if RUBY_PLATFORM == 'java'
44
require 'WordCram.jar'
5-
require 'jsoup-1.10.3.jar'
5+
require 'jsoup-1.12.1.jar'
66
wc = %w[WordAngler WordColorer WordCram WordFonter WordPlacer WordSkipReason]
77
sh = %w[Colorers ImageShaper Observer Placers Word ShapeBasedPlacer]
88
WC = wc.concat(sh).freeze

lib/ruby_wordcram/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

33
module WordCram
4-
VERSION = '2.0.4'.freeze
4+
VERSION = '2.0.5'.freeze
55
end

mvnw

Lines changed: 310 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)