Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Sep 4, 2015
1 parent 38c6a8b commit d355881
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.2.0

[BC] Set default Stripe API to "2015-09-03"

# 3.1.0

* [BC] Set default Stripe API to "2015-08-19". When using this new version, refunds are now get without specifying
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ $client = new StripeClient('my-api-key');
> You can change the API key for the client using the `setApiKey` method. This is useful if you are using Stripe
Connect and make both your own API calls and API calls on behalf of your users.

The currently latest supported version of the API is **2015-08-19**. You can (and should) also explicitly specify the version
The currently latest supported version of the API is **2015-09-03**. You can (and should) also explicitly specify the version
of the client using the second parameter:

```php
$client = new StripeClient('my-api-key', '2015-08-19');
$client = new StripeClient('my-api-key', '2015-09-03');
```

### Versioning
Expand All @@ -53,7 +53,7 @@ and set the default Stripe version as the latest one.
* If existing endpoints are updating by changing their URL, a major release of ZfrStripe is released as compatibility cannot be assured.

Currently, the following Stripe API versions are accepted by ZfrStripe: `2015-02-18`, `2015-03-24`, `2015-04-07`, `2015-06-15`, `2015-07-07`,
`2015-07-13`, `2015-07-28`, `2015-08-07`, `2015-08-19`. I will try to update the library as soon as new version are released.
`2015-07-13`, `2015-07-28`, `2015-08-07`, `2015-08-19`, `2015-09-03`. I will try to update the library as soon as new version are released.

> If you need support for versions as old as 2014-03-28, please use branch v2 of ZfrStripe.
> If you need support for even older versions, please use branch v1 of ZfrStripe.
Expand Down
4 changes: 2 additions & 2 deletions src/Client/StripeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@ class StripeClient extends Client
/**
* Stripe API version
*/
const LATEST_API_VERSION = '2015-08-19';
const LATEST_API_VERSION = '2015-09-03';

/**
* @var array
*/
protected $availableVersions = [
'2015-02-18', '2015-03-24', '2015-04-07', '2015-06-15', '2015-07-07', '2015-07-13', '2015-07-28',
'2015-08-07', '2015-08-19'
'2015-08-07', '2015-08-19', '2015-09-03'
];

/**
Expand Down

0 comments on commit d355881

Please sign in to comment.