Skip to content

Commit 8d8c8e8

Browse files
authored
Remove fixnum deprecation warning (#93)
1 parent 382aa07 commit 8d8c8e8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 3.1.1
2+
-- Handle Fixnum deprecation warning
3+
14
# 3.1.0
25
-- Simplified syntax for AWS credentials
36

lib/broadside/gli/global.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
accept Array do |val|
66
val.split(' ')
77
end
8-
accept Fixnum do |val|
8+
accept Integer do |val|
99
val.to_i
1010
end
1111

lib/broadside/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Broadside
2-
VERSION = '3.1.0'.freeze
2+
VERSION = '3.1.1'.freeze
33
end

0 commit comments

Comments
 (0)