stripe 1.17.2 → 1.17.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 1.17.3 2015-01-12
2
+
3
+ * 1 bugfix:
4
+ * Fixed API key propagation for ApplicationFee#refund
5
+
1
6
  === 1.17.2 2015-01-08
2
7
 
3
8
  * 1 bugfix:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.2
1
+ 1.17.3
@@ -8,7 +8,7 @@ module Stripe
8
8
 
9
9
  def refund(params={}, opts={})
10
10
  api_key, headers = Util.parse_opts(opts)
11
- response, api_key = Stripe.request(:post, refund_url, api_key, params, headers)
11
+ response, api_key = Stripe.request(:post, refund_url, api_key || @api_key, params, headers)
12
12
  refresh_from(response, api_key)
13
13
  end
14
14
 
@@ -1,3 +1,3 @@
1
1
  module Stripe
2
- VERSION = '1.17.2'
2
+ VERSION = '1.17.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.2
4
+ version: 1.17.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-01-08 00:00:00.000000000 Z
13
+ date: 2015-01-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client