mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-08-29 00:02:34 -04:00
Add support for creating invoices; bump version.
This commit is contained in:
parent
7f87b2bc4a
commit
fd42cec19d
@ -1,3 +1,9 @@
|
||||
=== 1.7.6 2012-10-29
|
||||
* Add support for creating invoices.
|
||||
|
||||
=== 1.7.5 2012-10-25
|
||||
* Add support for new API lists.
|
||||
|
||||
=== 1.7.4 2012-10-08
|
||||
|
||||
* Fix bug introduced in 1.7.3 calling API methods that take no
|
||||
@ -56,7 +62,7 @@
|
||||
* A whole bunch of releases between 1.5.0 and 1.6.0, but few changes, mainly the addition of:
|
||||
- plans
|
||||
- coupons
|
||||
- events
|
||||
- events
|
||||
- tokens
|
||||
* 1.6.0 also contains a new inspect/to_string implementation
|
||||
|
||||
|
@ -2,6 +2,7 @@ module Stripe
|
||||
class Invoice < APIResource
|
||||
include Stripe::APIOperations::List
|
||||
include Stripe::APIOperations::Update
|
||||
include Stripe::APIOperations::Create
|
||||
|
||||
def self.upcoming(params)
|
||||
response, api_key = Stripe.request(:get, upcoming_url, @api_key, params)
|
||||
|
@ -1,3 +1,3 @@
|
||||
module Stripe
|
||||
VERSION = '1.7.5'
|
||||
VERSION = '1.7.6'
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user