Skip to content

Commit

Permalink
updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Development User - Dev committed Mar 11, 2015
1 parent 199eced commit 9945665
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
= LitleOnline CHANGELOG

== version 8.29.1(March 11, 2015)
* BugFix: fixed a XML field bug in Account Update Token

== version 8.29.0(January 28, 2015)
* Feature : Added support for Applepay and Secondary Amount
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
s.description = File.read(File.join(File.dirname(__FILE__), 'DESCRIPTION'))
s.requirements =
[ 'Contact sdksupport@litle.com for more information' ]
s.version = "8.29.0"
s.version = "8.29.1"
s.author = "Litle & Co"
s.email = "sdksupport@litle.com"
s.homepage = "http://www.litle.com/developers"
Expand Down
2 changes: 1 addition & 1 deletion lib/LitleOnlineRequest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def get_merchant_id(options)
end

def get_merchant_sdk(options)
options['merchantSdk'] || 'Ruby;8.29.0'
options['merchantSdk'] || 'Ruby;8.29.1'
end

def get_report_group(options)
Expand Down
2 changes: 1 addition & 1 deletion test/unit/test_LitleOnlineRequest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def test_set_merchant_sdk
#Explicit - used for integrations
assert_equal 'ActiveMerchant;3.2', litle.send(:get_merchant_sdk, {'merchantSdk'=>'ActiveMerchant;3.2'})
#Implicit - used raw when nothing is specified
assert_equal 'Ruby;8.29.0', litle.send(:get_merchant_sdk, {'NotMerchantSdk'=>'ActiveMerchant;3.2'})
assert_equal 'Ruby;8.29.1', litle.send(:get_merchant_sdk, {'NotMerchantSdk'=>'ActiveMerchant;3.2'})
end

def test_sale_paypal_order_complete_typo
Expand Down

0 comments on commit 9945665

Please sign in to comment.