stripe 1.17.1 → 1.17.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 1.17.2 2015-01-08
2
+
3
+ * 1 bugfix:
4
+ * Fixed API key propagation for child resources
5
+
1
6
  === 1.17.1 2015-01-07
2
7
 
3
8
  * 2 minor enhacements:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.1
1
+ 1.17.2
@@ -3,7 +3,7 @@ module Stripe
3
3
  module Delete
4
4
  def delete(params = {}, opts={})
5
5
  api_key, headers = Util.parse_opts(opts)
6
- response, api_key = Stripe.request(:delete, url, api_key, params, headers)
6
+ response, api_key = Stripe.request(:delete, url, api_key || @api_key, params, headers)
7
7
  refresh_from(response, api_key)
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Stripe
2
- VERSION = '1.17.1'
2
+ VERSION = '1.17.2'
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.1
4
+ version: 1.17.2
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-07 00:00:00.000000000 Z
13
+ date: 2015-01-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client