diff --git a/CHANGELOG.md b/CHANGELOG.md index 2937130..98cf4e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.5.3 +* Support 認証後決済実行 [#45](https://github.com/t-k/gmo-payment-ruby/pull/45) (Thanks [@darren987469](https://github.com/darren987469)) +* Support SearchType of INPUT_PARAMS [#47](https://github.com/t-k/gmo-payment-ruby/pull/47) (Thanks [@nkuroda](https://github.com/nkuroda)) +* Drop ruby 2.0.0 [#48](https://github.com/t-k/gmo-payment-ruby/pull/48) + ## 0.5.2 * Support d払い/ドコモ払い(docomo payment), 楽天ペイ(Rakuten payment) [#42](https://github.com/t-k/gmo-payment-ruby/pull/42) (Thanks [@valda](https://github.com/valda)) * Add more G-series error codes [#41](https://github.com/t-k/gmo-payment-ruby/pull/41) (Thanks [@ermaac](https://github.com/ermaac)) diff --git a/fixtures/vcr_cassettes/GMO_Payment_RemittanceAPI/_search_mail_deposit_gets_data_about_a_mail_deposit.yml b/fixtures/vcr_cassettes/GMO_Payment_RemittanceAPI/_search_mail_deposit_gets_data_about_a_mail_deposit.yml index 6c2a034..f6540f9 100644 --- a/fixtures/vcr_cassettes/GMO_Payment_RemittanceAPI/_search_mail_deposit_gets_data_about_a_mail_deposit.yml +++ b/fixtures/vcr_cassettes/GMO_Payment_RemittanceAPI/_search_mail_deposit_gets_data_about_a_mail_deposit.yml @@ -32,7 +32,7 @@ http_interactions: - SAMEORIGIN body: encoding: UTF-8 - string: Deposit_ID=dep00001&Mail_Address=anyutzy@demo.com&Shop_Mail_Address=anyutzy@demo.com&Account_Name=An Yutzy&Amount=1000&Expire=20170503&Status=0 + string: Deposit_ID=dep00001&Mail_Address=anyutzy+test@demo.com&Shop_Mail_Address=anyutzy@demo.com&Account_Name=An Yutzy&Amount=1000&Expire=20170503&Status=0 http_version: recorded_at: Mon, 01 May 2017 05:58:30 GMT recorded_with: VCR 3.0.3 diff --git a/lib/gmo/version.rb b/lib/gmo/version.rb index 7aa6d65..d051dae 100644 --- a/lib/gmo/version.rb +++ b/lib/gmo/version.rb @@ -1,3 +1,3 @@ module GMO - VERSION = "0.5.2" + VERSION = "0.5.3" end diff --git a/spec/gmo/remittance_api_spec.rb b/spec/gmo/remittance_api_spec.rb index c76dbd3..005f1be 100644 --- a/spec/gmo/remittance_api_spec.rb +++ b/spec/gmo/remittance_api_spec.rb @@ -469,7 +469,7 @@ it "gets data about a mail deposit", :vcr do result = do_api_call result["Deposit_ID"].nil?.should_not be_truthy - result["Mail_Address"].nil?.should_not be_truthy + result["Mail_Address"].should eq('anyutzy+test@demo.com') result["Shop_Mail_Address"].nil?.should_not be_truthy result["Account_Name"].nil?.should_not be_truthy result["Amount"].nil?.should_not be_truthy