Skip to content

Commit

Permalink
Add versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Dec 14, 2015
1 parent bb1412c commit 0ac48b1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.5.0

* [BC] Set default Stripe API to "2015-10-16"
* Add the "default_source" parameter when updating a Stripe customer (all descriptors).

# 3.4.0

* [BC] Set default Stripe API to "2015-10-01"
Expand Down
8 changes: 4 additions & 4 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-10-01**. You can (and should) also explicitly specify the version
The currently latest supported version of the API is **2015-10-16**. You can (and should) also explicitly specify the version
of the client using the second parameter:

```php
$client = new StripeClient('my-api-key', '2015-10-01');
$client = new StripeClient('my-api-key', '2015-10-16');
```

### Versioning
Expand All @@ -53,8 +53,8 @@ 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`, `2015-09-03`, `2015-09-08`, `2015-09-23`, `2015-10-01`. 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`, `2015-09-08`, `2015-09-23`, `2015-10-01`, `2015-10-12`,
`2015-10-16`. 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
5 changes: 3 additions & 2 deletions src/Client/StripeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,15 @@ class StripeClient extends Client
/**
* Stripe API version
*/
const LATEST_API_VERSION = '2015-09-08';
const LATEST_API_VERSION = '2015-10-16';

/**
* @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-09-03', '2015-09-08', '2015-09-23', '2015-10-01'
'2015-08-07', '2015-08-19', '2015-09-03', '2015-09-08', '2015-09-23', '2015-10-01', '2015-10-12',
'2015-10-16'
];

/**
Expand Down

0 comments on commit 0ac48b1

Please sign in to comment.