Add support for creating invoices; bump version.

This commit is contained in:
Sheena Pakanati 2012-10-29 11:03:51 -07:00
parent 7f87b2bc4a
commit fd42cec19d
4 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -1 +1 @@
1.7.5
1.7.6

View File

@ -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)

View File

@ -1,3 +1,3 @@
module Stripe
VERSION = '1.7.5'
VERSION = '1.7.6'
end