Skip to content

Commit 38c6a8b

Browse files
committed
Add descriptor
1 parent 8004b1f commit 38c6a8b

File tree

4 files changed

+3672
-6
lines changed

4 files changed

+3672
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 3.1.0
2+
3+
* [BC] Set default Stripe API to "2015-08-19". When using this new version, refunds are now get without specifying
4+
a charge ID.
5+
16
# 3.0.0
27

38
* [BC] For all descriptors, `closeDispute` and `updateDispute` now uses the new endpoints that do not require a charge ID but instead a dispute

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ $client = new StripeClient('my-api-key');
3030
> You can change the API key for the client using the `setApiKey` method. This is useful if you are using Stripe
3131
Connect and make both your own API calls and API calls on behalf of your users.
3232

33-
The currently latest supported version of the API is **2015-07-28**. You can (and should) also explicitly specify the version
33+
The currently latest supported version of the API is **2015-08-19**. You can (and should) also explicitly specify the version
3434
of the client using the second parameter:
3535

3636
```php
37-
$client = new StripeClient('my-api-key', '2015-07-28');
37+
$client = new StripeClient('my-api-key', '2015-08-19');
3838
```
3939

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

5555
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`,
56-
`2015-07-13`, `2015-07-28`. I will try to update the library as soon as new version are released.
56+
`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.
5757

5858
> If you need support for versions as old as 2014-03-28, please use branch v2 of ZfrStripe.
5959
> If you need support for even older versions, please use branch v1 of ZfrStripe.

0 commit comments

Comments
 (0)