Skip to content

Commit

Permalink
Add support for creating invoices; bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
spakanati committed Oct 29, 2012
1 parent 7f87b2b commit fd42cec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion History.txt
@@ -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 === 1.7.4 2012-10-08


* Fix bug introduced in 1.7.3 calling API methods that take no * Fix bug introduced in 1.7.3 calling API methods that take no
Expand Down Expand Up @@ -56,7 +62,7 @@
* A whole bunch of releases between 1.5.0 and 1.6.0, but few changes, mainly the addition of: * A whole bunch of releases between 1.5.0 and 1.6.0, but few changes, mainly the addition of:
- plans - plans
- coupons - coupons
- events - events
- tokens - tokens
* 1.6.0 also contains a new inspect/to_string implementation * 1.6.0 also contains a new inspect/to_string implementation


Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.7.5 1.7.6
1 change: 1 addition & 0 deletions lib/stripe/invoice.rb
Expand Up @@ -2,6 +2,7 @@ module Stripe
class Invoice < APIResource class Invoice < APIResource
include Stripe::APIOperations::List include Stripe::APIOperations::List
include Stripe::APIOperations::Update include Stripe::APIOperations::Update
include Stripe::APIOperations::Create


def self.upcoming(params) def self.upcoming(params)
response, api_key = Stripe.request(:get, upcoming_url, @api_key, params) response, api_key = Stripe.request(:get, upcoming_url, @api_key, params)
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/version.rb
@@ -1,3 +1,3 @@
module Stripe module Stripe
VERSION = '1.7.5' VERSION = '1.7.6'
end end

0 comments on commit fd42cec

Please sign in to comment.