Skip to content

Commit 7debe49

Browse files
committed
Bump version
1 parent f3ceb48 commit 7debe49

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**v1.4.6** Bump up to JRubyComplete-9.1.16.0
2+
13
**v1.4.5** Vec2D and Vec3D now support `copy` constructor where the original can be a duck-type. Further the only requirement is that the duck-type responds to `:x`, and `:y` by returning a `float` or `fixnum` thus Vec2D can be promoted to Vec3D (where `z = 0`), or more usually some other Vector or Point class can be used as the original. A `vector_utils` library has been implemented, see examples for usage.
24

35
**v1.4.4** Bump up to JRubyComplete-9.1.15.0

lib/jruby_art/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
# A wrapper for version
33
module JRubyArt
4-
VERSION = '1.4.5'.freeze
4+
VERSION = '1.4.6'.freeze
55
end

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project 'rp5extras', 'https://github.com/ruby-processing/JRubyArt' do
33

44
model_version '4.0.0'
5-
id 'ruby-processing:rp5extras', '1.4.5'
5+
id 'ruby-processing:rp5extras', '1.4.6'
66
packaging 'jar'
77

88
description 'rp5extras for JRubyArt'
@@ -32,7 +32,7 @@
3232
'jruby.api' => 'http://jruby.org/apidocs/'
3333
)
3434

35-
pom 'org.jruby:jruby:9.1.13.0'
35+
pom 'org.jruby:jruby:9.1.16.0'
3636
jar 'org.processing:core:3.3.6'
3737
jar 'org.processing:video:3.0.2'
3838

vendors/Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ WARNING = <<-EOS.freeze
99
EOS
1010

1111

12-
JRUBYC_VERSION = '9.1.15.0'
12+
JRUBYC_VERSION = '9.1.16.0'
1313

14-
EXAMPLES = '2.7'
14+
EXAMPLES = '2.8'
1515
HOME_DIR = ENV['HOME']
1616
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
1717

@@ -29,7 +29,7 @@ file "jruby-complete-#{JRUBYC_VERSION}.jar" do
2929
rescue
3030
warn(WARNING)
3131
end
32-
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "71dee672bdea4cd15c5bde1c5b96fa7cfe5426b9db3c18919316d68c3e2a2919")
32+
check_sha256("jruby-complete-#{JRUBYC_VERSION}.jar", "814ed63dd2668d1b99e601c7a755adca2ed62e923db2a537c0f99064fa2bf0fc")
3333
end
3434

3535
directory "../lib/ruby"

0 commit comments

Comments
 (0)