Skip to content

Commit

Permalink
Bump version 2.11.0 with changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Suarez committed Dec 11, 2018
1 parent 60f3ad1 commit 0e05927
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Recurly PHP Client Library CHANGELOG

## Unreleased
* Remove Recurly.js v2 code
## Version 2.11.0 (December 11th, 2018)

### Upgrade Notes
This release will upgrade us to API version 2.17.

* Add `gateway_code` to Subscription and Invoice objects [PR](https://github.com/recurly/recurly-client-php/pull/380)
* Add `exemption_certificate` to Account object [PR](https://github.com/recurly/recurly-client-php/pull/381)
* Remove deprecated JS module [PR](https://github.com/recurly/recurly-client-php/pull/382)
* Add `getHeaders()` method [PR](https://github.com/recurly/recurly-client-php/pull/383)
* Add OpenSSL version to user agent [PR](https://github.com/recurly/recurly-client-php/pull/384)

This release contains the following breaking changes:
- Older Recurly.js token signing is not longer supported. You should upgrade to version 4 of Recurly.js: https://dev.recurly.com/docs/recurlyjs
### Upgrade Notes
This release contains one breaking change. Older Recurly.js token signing is not longer supported. You should upgrade to version 4 of Recurly.js: https://dev.recurly.com/docs/recurlyjs

## Version 2.10.6 (October 30th, 2018)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ section, there's a line that says something like:
libcurl/7.19.5 OpenSSL/1.0.1g zlib/1.2.3.3 libidn/1.15
```

Please ensure that your OpenSSL version supports TLS v1.1 or higher. At a minimum use v1.0.1g, however we recommend v1.1.0 and up.
Please ensure that your OpenSSL version supports TLS v1.2 or higher.

### Timezone
You will need to specify your server's timezone before using the Recurly PHP client. This is necessary for the library to properly handle datetime conversions. You can do this in your `php.ini` file:
Expand All @@ -43,12 +43,12 @@ date_default_timezone_set('America/Los_Angeles');

If you're using [Composer](http://getcomposer.org/), you can simply add a
dependency on `recurly/recurly-client` to your project's `composer.json` file.
Here's an example of a dependency on 2.10:
Here's an example of a dependency on 2.11:

```json
{
"require": {
"recurly/recurly-client": "2.10.*"
"recurly/recurly-client": "2.11.*"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion lib/recurly/client.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Recurly_Client
*/
private $_acceptLanguage = 'en-US';

const API_CLIENT_VERSION = '2.10.6';
const API_CLIENT_VERSION = '2.11.0';
const DEFAULT_ENCODING = 'UTF-8';

const GET = 'GET';
Expand Down

0 comments on commit 0e05927

Please sign in to comment.