Skip to content

Commit 41f9288

Browse files
committed
update janino
1 parent 92563ac commit 41f9288

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v1.3.1** Bump for janino-3.1.3 and processing-4.0
2+
13
**v1.3.0** Bump for janino-3.1.2, and jdk11
24

35
**v1.2.0** Bump for janino-3.0.12, plus some refactoring

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def create_manifest
66
file = File.open('MANIFEST.MF', 'w') do |f|
77
f.puts(title)
88
f.puts(version)
9-
f.puts('Class-Path: janino-3.1.2.jar commons-compiler-3.1.2.jar')
9+
f.puts('Class-Path: janino-3.1.3.jar commons-compiler-3.1.3.jar')
1010
end
1111
end
1212

joonsrenderer.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Gem::Specification.new do |gem|
1414
gem.homepage = 'https://ruby-processing.github.io/joonsrenderer/'
1515
gem.files = `git ls-files`.split($/)
1616
gem.files << 'lib/joonsrenderer.jar'
17-
gem.files << 'lib/janino-3.1.2.jar'
18-
gem.files << 'lib/commons-compiler-3.1.2.jar'
17+
gem.files << 'lib/janino-3.1.3.jar'
18+
gem.files << 'lib/commons-compiler-3.1.3.jar'
1919
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
2020
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
2121
gem.require_paths = ['lib']

lib/joonsrenderer/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module JoonsRenderer
2-
VERSION = '1.3.0'
2+
VERSION = '1.3.1'
33
end

pom.rb

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'joonsrenderer.basedir' => '${project.basedir}',
2020
'polyglot.dump.pom' => 'pom.xml',
2121
'project.build.sourceEncoding' => 'utf-8',
22-
'janino.version' => '3.1.2',
22+
'janino.version' => '3.1.3',
2323
'jogl.version' => '2.3.2',
2424
'processing.version' => '3.3.7'
2525
)
@@ -56,10 +56,12 @@
5656
'detectOfflineLinks' => 'false',
5757
'links' => ['${processing.api}',
5858
'${jruby.api}'])
59-
plugin(:jar, '3.2.0',
60-
'archive' => {
61-
'manifestFile' => 'MANIFEST.MF'
62-
})
59+
plugin(:jar, '3.2.0',
60+
'archive' => {
61+
'manifestEntries' => {
62+
'Automatic-Module-Name' => 'joonsrenderer'
63+
}
64+
})
6365
plugin :jdeps, '3.1.2' do
6466
execute_goals 'jdkinternals', 'test-jdkinternals'
6567
end

pom.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ DO NOT MODIFIY - GENERATED CODE
5959
<url>https://github.com/monkstone/joonsrenderer/issues</url>
6060
</issueManagement>
6161
<properties>
62-
<janino.version>3.1.2</janino.version>
62+
<janino.version>3.1.3</janino.version>
6363
<jogl.version>2.3.2</jogl.version>
6464
<joonsrenderer.basedir>${project.basedir}</joonsrenderer.basedir>
6565
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
@@ -154,7 +154,9 @@ DO NOT MODIFIY - GENERATED CODE
154154
<version>3.2.0</version>
155155
<configuration>
156156
<archive>
157-
<manifestFile>MANIFEST.MF</manifestFile>
157+
<manifestEntries>
158+
<Automatic-Module-Name>joonsrenderer</Automatic-Module-Name>
159+
</manifestEntries>
158160
</archive>
159161
</configuration>
160162
</plugin>

0 commit comments

Comments
 (0)